fork(2) download
  1. #include <stdio.h>
  2. #include <string.h>
  3.  
  4. int main(){
  5.  
  6. char arr[100];
  7.  
  8. gets(arr);
  9.  
  10. puts(arr);
  11. printf("f");
  12.  
  13. return 0;
  14.  
  15. }
  16.  
  17.  
  18.  
Success #stdin #stdout 0s 5328KB
stdin
apple mango
man
stdout
apple mango
f