下面程序的输出结果是()。
#include
#include
main()
{ char *p1="abc",*p2="ABC",str[50]= "xyz";
strcpy(str+2,strcat(p1,p2));
printf("%s\n",str);}
AxyzabcABC
BzabcABC
CxyabcABC
DyzabcABC
相关试题
-
下面程序的输出结果是()。 #include #include main() { char *p1=abc,*p2=ABC,str[50]= xyz; strcpy(str+2,strcat(p1,p
-
程序 #include # include char *fun(char *t) { char *p=t; return(p+strlen(t)/2); } void main() { char
-
已知:char str[10],*p=str;下面C语言语句中正确的是( )。
-
tr[100] =How do you do; strcpy( str + strlen(str)/2, es she); printf(%s\n, str); } 执行后的输出结果是( )。
-
删除字符串str末尾的指定字符char的表达式为