Bitwise operators work on bits and perform the bit-by-bit operations.
Bitwise operations consists of two digits 0 and 1.
The Bitwise operators are :
& | Binary AND |
| | Binary OR |
^ | Binary XOR |
~ | Binary One's Complement |
>> | Right Shift |
<< | Left Shift |
0 Comments