fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. int i = 0;
  5. {
  6. // Here, the outer i becomes inaccessible
  7. float i = 1.1;
  8. {
  9. int i = 2;
  10. printf("%d", i); // 2 is printed
  11. }
  12. }
  13. return 0;
  14. }
Success #stdin #stdout 0s 1832KB
stdin
Standard input is empty
stdout
2