同一个程序在devc++中就提示错误,在visualc++中就能正常运行,为什么。差别在哪里啊
#include<iostream>using namespace std;
int main()
{
int *p[1]; //定义整型的指针数组,其中有一个指针元素;
p[0]=new int [3];
p[0][0]=0;
p[0][1]=1;
p[0][2]=2;
for(int i=0;i<1;i++)
for(int j=0;j<3;j++)
cout<<p[i][j]<<" ";
delete [1] *p; //出错的地方,devc++中提示 13 C:\Users\lenovo\Desktop\Untitled1.cpp expected `]' before numeric constant //
system("pause");
return 0;
}