单项选择题
下面程序
main() int x=32;
printf("%d\n", x=x<<1);的输出是 ______。
A.100
B.160
C.120
D.64
热门
试题
单项选择题
以下程序运行后,输出结果为 ______。main()int a[2][3]=1,3,5,7,9,11,*s[2],**pp,*p;s[0]=a[0],s[1]=a[1];pp=s;p=(int*)malloc(sizeof (int));**pp=s[1][1];p=*pp;printf( %d n ,*p);
A.1
B.7
C.9
D.11