fork download
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. int main (void)
  4. {
  5. char str [20];
  6. gets(str);
  7.  
  8. printf("the string is %s.",str);
  9. return 0;
  10. }
Success #stdin #stdout 0s 5280KB
stdin
no more goodbye
stdout
the string is no more goodbye.