fork download
  1. #include <stdio.h>
  2. int main (void)
  3. {
  4. int i = 0;
  5.  
  6. while (1)
  7. {
  8. if (i >= 10)
  9. {
  10. break;
  11. }
  12. i++;
  13. printf ("x");
  14. }
  15. printf ("\n");
  16. getchar ();
  17. return 0;
  18. }
  19.  
Success #stdin #stdout 0.01s 1724KB
stdin
Standard input is empty
stdout
xxxxxxxxxx