单项选择题
以下程序:
#include<stdio.h>
main()
char str[10];
scanf("%s",&str);
printf("%s\n",str);
运行上面的程序,输入字符串how are you,则程序的执行结果是( )。
A.how
B.how are you
C.h
D.howareyou
点击查看答案&解析
<上一题
目录
下一题>
热门
试题
单项选择题
在数据流图中,带有箭头的线段表示的是( )。
A.控制流
B.数据流
C.模块调用
D.事件驱动
点击查看答案&解析
单项选择题
执行以下语句段后,xy的值是( )。 int*pt,xy; xy=200; pt=&xy; xy=*pt+30;
A.200
B.170
C.260
D.230
点击查看答案&解析
相关试题
下列程序的运行结果是( )。 #include...
有以下程序: #include<stdio.h> int...
下述程序的输出结果是( )。 #include...
有以下程序: #include<stdio.h> #d...
以下程序的输出结果是( )。 #include...