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