Explain the left shift and right shift bitwise operators with example in c++
Answers
Answered by
3
The bitwise shift operators move the bit values of a binary object. The left operand specifies the value to be shifted. ... The compiler performs integral promotions on the operands, and then the right operand is converted to type int . The result has the same type as the left operand (after the arithmetic conversions).
Answered by
5
Bitwise left and right shift operators<< >> The bitwise shift operators move the bit values of a binary object. Theleft operand specifies the value to beshifted.
The compiler performs integral promotions on the operands, and then the right operand is converted to type into
I HOPE MARK BRAINLEST ANSWER
Similar questions