设int a=3;,执行语句printf("%d",a<<2);后的输出结果是。
a<<2意思是a向左移2位。int a=3;对应的二进制数为11,向左移动两位之后的二进制数1100,对应的运算结果是12。