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