注意:此页面搜索的是所有试题
下面程序# include<stdio.h> # include<string.h>main(){char * p1="abc",* p2="ABC",str[50]="xyz";strcpy(str+2,strcat(p1,p2));printf("%s\n",str);}输出结果是( )
A.xyzabcABC
B.zabcABC
C.yzabcABC
D.xyabcABC

参考答案