fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. char str[100];
  5. printf("enter a value:");
  6. gets(str);
  7. printf("\nyou entered: ");
  8. puts( str );
  9. return 0;
  10. }
  11.  
Success #stdin #stdout 0s 4572KB
stdin
how are you
stdout
enter a value:
you entered:  how are you