Implement a system that consists of two processes; parent and child, communicates via Named pipe. The parent request the user to enter a sentence, then it will write this sentence into the pipe. The child reads this sentence, count the number of vowel letters in it, print the sentence on the screen and the number of vowels letters in it.
The output will be something like this
Parent process: Please enter a sentence: Welcome to OS lab Parent process: Write the sentence into the pipe.
Child process: Read Welcome to OS lab, number of vowels =6
I need (two files) a notepad files (parent. c and child. c files)