I declare this structure:
struct matrix27 {
double mat27[1083][1083];
} a1;
My program runs with this structure.
But when I declare this structure:
struct matrix27 {
double mat27[5034][5034];
} a1;
My program won't run (it compiles, but when I run it, windows stop it."filename.exe has stopped working").
I used a1 in several functions, I want to declare it dynamically, how can i do that?