

InterviewSolution
1. |
Solve : c++ pipe() questions? |
Answer» I WANT write a program that forks a copy of itself. The PARENT should ask the user for an integer. The PARENT should SEND that integer through a pipe to the CHILD. The CHILD should do something with it and send it back through a pipe to the parent. The PARENT should print out the integer. |
|