试题详情

有以下程序 #include "stdio.h" #include "string.h" void main( ) { char str[100] ="How do you do"; strcpy( str + strlen(str)/2, "es she"); printf("%s\n", str); } 执行后的输出结果是( )。

AHow do you do

B es she

CHow are you

D How does she