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

0
1
2
3
4
5
6
7
8
9
10