My question is a simple one and has a lot of high level answers which have flown over my head if i'm being totally honest. I'll start by why i need this array, it will be used as a 2d coordinate system which will be accurate to a millimetre. My code is stated below, i've tried to define the array on the heap (memory type) but i have had no luck. Go easy on me guys, i've litterally just started C++ today :)
edit: I am using visual studios
#include <iostream>
using namespace std;
char x [100000][100000];
int main()
{
}