有啊我没少某个函数,void main(){
char **p; int n=5; p=new char *[n]; input(p,n); fun(p,n); for(int i=0;i<n;i++) { for(int j=0;j<25;j++) cout<<p[i][j]; cout<<'\n'; delete []p[i]; } cout<<endl;} 红色就是它说的错误行
我要将P定义成指针数组所以不能这样定义吧