以下程序的输出结果是#include<iostream> using namespace std; void main() { char a[]="abcd"; char b[]="ABCD"; char *p1==a,*p2=b,str[50]="xyz"; strcpy(str+2,strcat(p1+2,p2+1)); cout<<str; }
输出是xycdBCD
程序有几个错误
没头文件string.h
第七行*p1那多了一个=