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