I'm running a test and it gives me an error when I try to create a vector [1000] [1000]. Are there limits for vectors?
The error code ( Application stops responding ) is as follows:
int main (){
int DIM_X = 1000;
int DIM_Y = 1000;
int vectorMD[DIM_X][DIM_Y];
int x,y;
for(x=0;x<DIM_X;x++){
for(y=0;y<DIM_Y;y++){
vectorMD[x][y] = x;
}
}
}