fork download
  1. #include <stdio.h>
  2.  
  3. int main () {
  4. int DIM_X = 1000;
  5. int DIM_Y = 1000;
  6. int vectorMD[DIM_X][DIM_Y];
  7. for (int x = 0; x < DIM_X; x++) for (int y = 0; y < DIM_Y; y++) vectorMD[x][y] = x;
  8. }
  9.  
  10. //https://pt.stackoverflow.com/q/183640/101
Success #stdin #stdout 0s 4352KB
stdin
Standard input is empty
stdout
Standard output is empty