Bitwise operator in C
Bitwise operator is used for manipulation of data at the bit level. In C programming there are many bitwise operators in which bitwise AND, bitwise OR, bitwise exclusive OR, shift left, shift right. below I'm going to list all bitwise operator with their symbols
& - bitwise AND
| - bitwise OR
^ - bitwise exclusive OR
<< - shift left
>> - shift right