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