相关试题
单选题 设变量a是int型,f是float型,i是double型,则表达式10+'a'+i*f值的数据类型为( )。
单选题 设有定义:int x=2;,以下表达式中,值不为6的是( )。
单选题 判断字符变量c的值不是数字也不是字母,应采用下述表达式( )。
单选题 以下定义数组的语句中错误的是( )。
单选题 若有说明:int st[5]; 则对st 数组元素的正确引用是( )。
单选题 有以下程序: #include <stdio.h> main() { int a=0,b=0,c=0,d=0; if(a=1) b=1;c=2; else d=3; printf("%d,%d,%d,%d\n",a,b,c,d); } 程序输出( )。
单选题 若有语句:int a=4, *p=&a;下面均代表地址的一组选项是( )。
单选题 有以下程序 #include <stdio.h> main() { int y=10; while(y--); printf("y=%d\n", y); } 程序执行后的输出结果是( )。