fork(1) download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. int i = 3;
  5.  
  6. if (1) {
  7. int i = 5;
  8. printf("%d", i);
  9. }
  10.  
  11. printf("%d", i);
  12. return 0;
  13.  
  14. }
Success #stdin #stdout 0.01s 1720KB
stdin
Standard input is empty
stdout
53