nicktian
2003-11-24, 08:27
redhat 9.0 为什么不能开二维大数组(2000,2000)?
请教高手!:rolleyes:
KingArthur
2003-11-25, 12:46
the code below can complie and run properly on my system:
main()
{
char array[2000][2000];
array[0][0]='h';
array[1999][1999]='k';
printf("%c\n", array[0][0]);
printf("%c\n", array[1999][1999]);
}
my gcc version is 3.2.1
vBulletin® v3.6.8,版权所有 ©2000-2009,Jelsoft Enterprises Ltd.