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