+ 1
What does the compiler do in this code?;-)
3 Respuestas
+ 9
It's a bitwise left shift by 3 bits.
1: 00000001
<<3: 00001000 (8)
Left shifting a number by one bit is the same as multiplying it by 2.
+ 1
okk i also got it
- 2
It may be garbage value .