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