Hello Members,
I have the following question about the pipe() system call. Say, Process A (my main()) forks a Process B which then forks a Process C. How can I open a pipe between Process C and Process A? I would like to write a sentence in Process C and read it in Process A. Right now, I am only able to read/write from Process A to Process B and read/write from Process B to Process C. Any pseudocode/example code will be of great help.
Thank you!
sciprog1