Question:Which operator is used for bitwise left shift?
A << B >> C | D &
+ AnswerA
+ ExplanationThe << operator shifts bits to the left.
+ Report