填空题

下列程序运行后的输出的结果是______。
#include<stdio.h>
main()
char s[20];
scanf("%s",s);
printf("%s",s);

运行程序,输入HOW ARE YOU。

【参考答案】

HOW