~ ==> bitwise NOT
& ==> bitwise AND
| ==> bitwise OR
^ ==> bitwise XOR
>> ==> bit shift right
<< ==> bit shift left
#include <stdio.h>
int main()
{
int a = 12, b = 25;
printf("Output = %d", a&b);
return 0;
}
int main()
{
// a = 5(00000101), b = 9(00001001)
unsigned char a = 5, b = 9;
// The result is 00000001
printf("a = %d, b = %d
", a, b);
printf("a&b = %d
", a & b);
// The result is 00001101
printf("a|b = %d
", a | b);
// The result is 00001100
printf("a^b = %d
", a ^ b);
// The result is 11111010
printf("~a = %d
", a = ~a);
// The result is 00010010
printf("b<<1 = %d
", b << 1);
// The result is 00000100
printf("b>>1 = %d
", b >> 1);
return 0;
}