I understand
11001110
& 10011000
= 10001000
but I want to test it myself
so I declare unsigned char and print it out, but it just gives me blank.
unsigned char result;
result= 11001110 & 10011000;
cout<<result;
Also tested with unsigned int, but it gives me 0, which is not what I expected