单选题 在键盘上输入abc后运行程序结果为() #include<stdio.h> int main() {char ch1,ch2,ch3; ch1=getchar();ch2=getchar();ch3=getchar();printf("%c,%c,%c",ch1,ch2,ch3); return 0;}
相关试题
单选题 c语言中字符串的末字符是( )
单选题 C语言中主函数的个数为( )个。
单选题 若定义char i;则i的最大值是( )
单选题 设float m=4.0,n=4.0;,使m为12.0的表达式为()
单选题 设int x=1,y=1;表达式(x||y)的值是( )。
单选题 以下程序的输出结果是( )。 main( ) { int a=10,b=4; printf("%d\n",a/b); }
单选题 设float m=4.0,n=4.0;,使m为10.0的表达式为()
单选题 设int x=2,y=3;,则执行语句printf("%d,%d",++x,--y)打印输出的x和y的值是( )