Question:What does the operator | do?
A Performs logical OR B Performs bitwise OR C Performs both Logical and bitwise OR D None
+ AnswerB
+ ExplanationThe | operator performs a bitwise OR operation on two integral types.
+ Report