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