fork(1) 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. int x,y;
  8. for(x=0;x<DIM_X;x++){
  9. for(y=0;y<DIM_Y;y++){
  10. vectorMD[x][y] = x;
  11. }
  12. }
  13. }
  14.  
Success #stdin #stdout 0s 9296KB
stdin
Standard input is empty
stdout
Standard output is empty