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