已知int a=4,b=a<<2;,则语句printf("%d",b);的输出结果是______
查看答案
有以下程序#includemain(){short c=124;c=c___________;printf("%d\n",c);}若要使程序的运行结果为248,应在下划线处填入的是_______。
A. >>2
B. | 248
C. &0248
D. <<1
下列程序段的输出结果是______。struct {int a,b,c;}s={1,2,3},*p;p=&s;s.a=s.b+s.c;printf("%d\n",p->a);
A. 5
B. 4
C. 3
D. 无结果
以下对枚举类型定义正确的是______。
A. enum num={one,two,three};
B. enum num{one=9,two=18,three};
C. enum num={"one","two","three"};
D. enum num{"one","two","three"};
2008年北京奥运会是第(__)届夏季奥林匹克运动会。
A. 26
B. 27
C. 28
D. 29