菜鸟级别的问题,资深的大哥哥大姐姐来帮忙啊
#include<stdio.h>void main()
{ int a,b,i=1;
int *p[10][10];
for(a=0;a<10;a++)
for(b=0;b<10;b++)
{
*p[a][b]=i;
i++;
}
for(a=0;i<10;i++)
for(b=0;b<10;b++)
{
printf("%3d",*p[a][b]);
if(b==9)
printf("\n");
}
},
运行时出现cannot compile the file D:\C*****;no compile tool is associated with the file exteusion.
是怎么回事?