fork download
  1. #include <stdio.h>
  2. /* read and write a line of text */
  3. int main( )
  4. {
  5. char line[80];
  6. gets(line);
  7. puts(line);
  8. return 0;
  9. }
  10.  
Success #stdin #stdout 0s 5444KB
stdin
Stgring
stdout
Stgring