设有以下语句 int a=1,b=2,c; c=a^(b<<2); 执行后,c的值为______。A.6B.7C.8D.9
设有以下语句 int a=1,b=2,c; c=a^(b<<2); 执行后,c的值为______。
A.6
B.7
C.8
D.9
相关考题:
设有C语言变量说明“static int a[][2]={{1,2),(3,4}};int *pa,(*pb)[2];”,则执行语句“pa=pb=”,则执行语句“pa=pb=a[0][0];”后,(*(pa+1))的值为(31)。A.2B.3C.a[0][1]D.a[1][0]
若$y, $x为int型变量,则执行以下语句后,$y的值为()。 <?php $x=1; ++$x; $y = $x++; ?>A.1B.2C.3D.0