int **p;
int m,n,i;
m=10,n=5;
*p=new int[m];//运行产生异常:Access Violation,为什么?
for(i=0;i<m;i++)
  p[i]=new int[n];