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