为什么这个程序总是不能运行. 我的系统是xp, vc++6.0上编译.
#include<stdio.h> #include<stdlib.h>
void main(){ int **a; int x,y; a=(int **)malloc(sizeof(int)); for(x=0;x<5;x++){ for(y=0;y<5;y++) scanf("%d",&a[x][y]); printf("\n"); } } 每次都有错误报告出现啊.