Hello, I'm just learning about the data types in C after some googling, and I'm beginning to understand the limits of var and the advantages of the others like int and double.

So is there a way to define an array in C that is bigger than 999999? I tried:

#define huge 123456789

Int big_boy[huge];

That crashes on startup.

Also, I was able to at one point define this array:

Int nodes[9999999];

This actually worked until I tried saving the game, which I ran out of memory.