[填空题] 有以下程序:
#include <stdio.h>
main()
char a[20]="How are you",b[20];
scanf("%s",b);printf("%s %s",a,b);
程序运行时从键盘输入:How are you<回车>
则输出结果为______。
正确答案:How are youHow

[填空题] 有以下程序:
#include <stdio.h>
main()
char a[20]="How are you",b[20];
scanf("%s",b);printf("%s %s",a,b);
程序运行时从键盘输入:How are you<回车>
则输出结果为______。
正确答案:How are youHow
上一篇 [填空题] 在最坏情况下,冒泡排序的时间复杂度为 (1) 。
下一篇 [单项选择题] 下列程序段的执行结果为______。Dim m(3,3)As IntegerDim i As Integer Dim j As Integer Dim x As Integer