fork download
  1. #include <stdio.h>
  2.  
  3. const int x = 4711;
  4. enum {y = 4711};
  5.  
  6. int main() {
  7. #if 1
  8. *(int*)&x = 4712;
  9. printf("%d",x);
  10. #else
  11. y=4712;
  12. #endif
  13. return 0;
  14. }
  15.  
  16.  
Runtime error #stdin #stdout 0s 2164KB
stdin
Standard input is empty
stdout
Standard output is empty