I'm struggling with creating a large empty 2D array of strings (120000x7).
I created empty matrix like this:
string large_matrix[120000][7] = {};
If I create this array, it throws me a stack overflow exception. Does anyone know how to handle this problem? I do not want array as vector.