I'm very new to C++ and was trying to initialize a large 2d zero array. However, if I run this it gives no errors but "test a" is not printed. Anyone know what I'm doing wrong?
#include<iostream>
using namespace std;
int main(){
cout << "test a" << endl;
int arrone[60480][12] = {};
}