问题 填空题

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

答案

参考答案:How does she

单项选择题
多项选择题