Bitwise Operator in C language
Bitwise operator in C language Basicaly bitwise operator or those operators which, whenever be used perform action on the bit values of the data. There are various bitwise operators used in c language AND operator & And operator perform AND operation on the bit values of operands. int a=2, b=3,c; c=a+b; since a = 2 which have binary equivalent is 0010 and b=3 and can have binary equivalent is 0011. So and operation will be performed like: 0 0 1 0 & 0 0 1 1 0 0 1 0 If both the bits are 1 then output also will be 1 other wise 0. 2. ...