Bitwise Operators in C
C language provides six bitwise operators which for manipulation of data at bit level. These operators are used to perform shifting, complementing, ANDing, ORing and so on, al at bit level. These include the bitwise AND (&), bitwise OR (|), bitwise exclusive OR (^), shift left (<<), shift right (>>) and one’s complement (~) operator. … Read more