为什么我的编译和链接都没错误的,可是一运行就停止工作的
#include<iostream.h>int main()
{
int shu[5]={1,2,3,4,5},*p[5];
for(int a=0;a<=4;a++)
{
*p[a]=shu[a];
cout<<*p[a]<<'\t';
}
cout<<endl;
return 0;
}
2012-12-23 23:24
2012-12-23 23:40
2012-12-23 23:43
2012-12-24 09:59
2012-12-25 09:16
2012-12-25 17:38
2012-12-25 20:18
2012-12-25 20:20
2012-12-25 20:21
2012-12-25 20:25