The bitwise operators are used for testing bits.or shifting them right or left bitwise operator.the following all bitwise operator listed in table.
Sr.No |
Operators |
Descriptions |
---|---|---|
01 |
& |
Bitwise AND |
02 |
| |
Bitwise OR |
03 |
^ |
Bitwise exclusive OR |
04 |
<< |
Shift left |
05 |
>> |
Shift right |