What are shift operators in C++?
Answers
Answered by
0
The left-shift operator causes the bits in shift-expression to be shifted to the left by the number of positions specified by additive-expression.If you left-shift a signed number so that the sign bit is affected, the result is undefined.
Similar questions