#include main() { int a=10, b=3, c=16; int x,y; x=a & b; 10&3=1010&0011=0010=2 y=c<<2; 16<<2=1000000=64 printf(“%d, %d”,x,y); } 2 64