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