I have to create static 3D array 200x200x200, but when I try to compile this code
int main()
{
    int arr[200][200][200];
    return 0;
}
program crashes. Debugger displays this error:
Program received signal SIGSEGV, Segmentation fault.
Does anyone have idea how to solve this?
 
     
    