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