阅读下列程序,则在执行后,程序的运行结果为 include "stdio.h" include "string.h" main() {ch
阅读下列程序,则在执行后,程序的运行结果为
#include "stdio.h"
#include "string.h"
main()
{ char a[30]="nice to meet you!";
strcpy(a+strlen(a)/2,"you");
printf("%s\n",a);}
A.nice to meet you you
B.nice to
C.meet you you
D.nice to you