fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. volatile int a[1];
  5. puts("test1");fflush(stdout);
  6. a[1234567] = 123;
  7. puts("test2");fflush(stdout);
  8. printf("test3 %d\n", a[1234567]);fflush(stdout);
  9. return 0;
  10. }
  11.  
Runtime error #stdin #stdout 0s 2008KB
stdin
Standard input is empty
stdout
test1