fork download
  1. #include <stdio.h>
  2. main()
  3. {
  4. int c;
  5. c = getchar();
  6. while(c != EOF )
  7. {
  8. putchar(c);
  9. c = getchar();
  10. }
  11. }
Success #stdin #stdout 0s 5304KB
stdin
Standard input is empty
stdout
Standard output is empty