【单选题】
以下程序的输出结果是() int a, b; void fun( ) { a=100; b=200; } main( ) { int a=100, b=100; fun( ); printf(%d%d \n, a,b); }
【单选题】
C语言程序中可以对程序进行注释,注释部分必须用符号()括起来。
【单选题】
已知大写字母A的ASCII码值是65,小写字母a的ASCII码是97,则用 八进制表示的字符常量’\101’是().
【单选题】
有以下的定义语句:structstudent{intnum;charname[9];};则不能正确定义结构数组并赋初始值的是()。
①
structstudentstu[2]={1,zhangsan,2,lisi};
②
structstudentstu[2]={{1,zhangsan},{2,lisi}};
③
structstu[2]={{1,zhangsan},{2,lisi}};
④
structstudentstu[]={{1,zhangsan},{2,lisi}};
【单选题】
若有说明语句:charc=’9’,sp1,sp2;,以下均正确的一组赋值语句是()
【单选题】
若a为整型变量,则以下语句a=-2;printf(%d\n,a);()
【单选题】
int a=2;if(a=1){执行语句;}对if条件判断正确的是()。
【单选题】
设有说明:char w;int x;float y;double z;则表达式w*x+z-y 值的数据类型为().