各位,看看这个错误
error C2601: 'main' : local function definitions are illegalfatal error C1004: unexpected end of file found
这是什么意思?
8是单词8懂,而是放在VC++里不知道这是什么意思
有啊
我没少某个函数,
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定义成指针数组
所以不能这样定义吧