What does a»_space; 2 mean?
Shifting a to the right 2 places
What does a «_space;1 mean?
Shifting to the left 1 place
When a = 10100000 what does a | (1 «2) look like?
1 «_space;2 = 00000100
10100000 | 00000100 = 10100100
When a = 10100000 what does a &= ~(1 «_space;7) look like?
1 «_space;7 = 10000000
~(1 «_space;7) = 011111111
01111111 & 10100000 = 00100000
What is bitwise AND?
&
What is bitwise OR?
|
What is bitwise XOR?
What is bitwise NOT?
~