填空题

下列程序中字符串中各单词之间有一个空格,则程序的输出结果是 【9】
#include<string.h>
main()
char str1[]="How do you do",*p1=str1;
strcpy(str1+strlen(str1)/2,"es he");
printf("%s\n",p1);

【参考答案】

How does he