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