单项选择题

以下程序:
#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