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