fork(1) download
  1. #include <stdio.h>
  2. #include <stdint.h>
  3.  
  4. int main(){
  5.  
  6. char a[100];
  7.  
  8. while (scanf("%[^\n]%*c", a)==1) {
  9. printf("%s\n",a);
  10. }
  11. return 0;
  12. }
Success #stdin #stdout 0s 10320KB
stdin
she is beautiful

That is a flower
stdout
she is beautiful