fork download
  1. #include <stdio.h>
  2.  
  3. #define MAX_ARR_SIZE 500
  4.  
  5. int main(void) {
  6. int mat[MAX_ARR_SIZE][MAX_ARR_SIZE];
  7. int mat2[MAX_ARR_SIZE][MAX_ARR_SIZE];
  8.  
  9. printf("Hello!\n");
  10.  
  11. return 0;
  12. }
  13.  
Success #stdin #stdout 0s 5532KB
stdin
Standard input is empty
stdout
Hello!