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