I have a program that has to declare a huge integer array of the size 1000000 in C (using GNU GCC compiler). I tried to declare the array in two different ways.
The two possible codes are :
#include <stdio.h>
int arr[1000000];
int main()
{
return 0;
}
and
#include <stdio.h>
int main()
{
int arr[1000000];
return 0;
}
The latter version hangs during runtime. What could be the possible reason?
Thanks a lot!!!