Write a program that uses two FIFOs to enable bidirectionalcommunication between a parent and child process. The parentprocess should loop reading a block of text from standard input anduse one of the pipes to send the text to the child, which convertsit to uppercase and sends it back to the parent via the other pipe.The parent reads the data coming back from the child and echoes iton standard output before continuing around the loop once more
IN C Programming on UNIX
Expert Answer
Answer to Write a program that uses two FIFOs to enable bidirectional communication between a parent and child process. The parent…