I have a question about an error in a C program.
I need to define a float array as follow:
float rad[1000][1000000];
But this error is occured:
size of variable 'rad' is too large
I need to define an array with those sizes. So, what should I do in order to solve the problem? Please help me if anyone knows the solution.
Thanks so much

