fork download
  1. #include <stdio.h>
  2.  
  3. void fun();
  4. int i = 10;
  5. void main()
  6. {
  7. int i =20;
  8. printf("%d",i);
  9. i = 30;
  10. fun();
  11. }
  12. void fun()
  13. {
  14. printf("%d",i);
  15. }
Runtime error #stdin #stdout 0s 2168KB
stdin
Standard input is empty
stdout
2010