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