fork download
  1. #include<stdio.h>
  2. int main()
  3. {
  4. int i=1;
  5. do
  6. {
  7. printf("*");
  8. i++;
  9. }
  10. while(i<=10);
  11. }
  12.  
Success #stdin #stdout 0.01s 5284KB
stdin
Standard input is empty
stdout
**********