![]() |
#2
peach54602014-12-27 15:42
|
#include"string.h"
main( )
{ char *p1,*p2,str[50]="ABCDEFG";
p1="abcd"; p2="efgh";
strcpy(str+1,p2+1);
strcpy(str+3,p1+3);
printf("%s",str);
}
这道题怎么算的?看不懂