When i do:
vector<double> myVect(120000000, 0);
I can make the vector hold seemingly as many elements as i want. However, when i do:
double myArray[120000];
I am limited to somewhere around 120000-130000 elements before my program crashes. Is there something screwy going on or are arrays really this limited?