fork download
  1. #include <stdio.h>
  2.  
  3. int main(void)
  4. {
  5. // int i = 7; // uncommenting this creates an error
  6. int i = 16;
  7. {
  8. int i = 15;
  9. {
  10. int i = 8;
  11. {
  12. int i = 4;
  13. {
  14. int i = 0;
  15. }
  16. printf("%d ", i);
  17. }
  18. printf("%d ", i);
  19. }
  20. printf("%d ", i);
  21. }
  22. printf("%d ...", i);
  23.  
  24. return 0;
  25. }
  26.  
Success #stdin #stdout 0s 2248KB
stdin
Standard input is empty
stdout
4 8 15 16 ...