Bitwise operator
Bitwise operator are used to perform calculation using binary digits which can be performed using following operators
|
Operator |
purpose |
|
& |
Bitwise AND |
|
| |
Bitwise OR |
|
^ |
Bitwise XOR |
|
~ |
Bitwise complement |
|
<< |
Left shift |
|
>> |
Right shift |
Post a Comment