fork(2) download
  1. #include <stdio.h>
  2.  
  3. extern int i;
  4. int main(void)
  5. {
  6. {
  7.  
  8. int i=20;
  9. {
  10. const volatile unsigned i=30; printf("%d",i);
  11. }
  12. printf("%d",i);
  13. }
  14. printf("%d",i);
  15. }
  16. int i;
Success #stdin #stdout 0s 9424KB
stdin
Standard input is empty
stdout
30200