有以下程序
#include
main()
{ char a[30],b[30];
scanf("%s",a);
gets(b);
printf("%s\n %s\n",a,b);
}
程序运行时若输入:
how are you? I am fine
则输出结果是()。
Ahow are you?
Bhow are you? I am fine
Chow are you? I am fine
Dhow are you?
相关试题
-
有以下程序 #include main() { char a[30],b[30]; scanf(%s,a); gets(b); printf(%s\n %s\n,a,b);
-
有以下程序 #include stdio.h #include string.h void main( ) { char str[100] =How do you do; strcpy( str +
-
有以下程序 #include void main() { int s; scanf(%d,&s); while(s>0) { switch(s) { case 1:pri
-
有以下程序 #include main() { unsigned char a=8,c; c=a>>3; printf(%d\n,c); } 程序运行后的输出结果是()
-
#include void main() { char str[]=\stop!\,he said; printf(str); } 程序的运行结果是 (