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