Answered step by step
Verified Expert Solution
Question
1 Approved Answer
1. write a C program that will create a child process using fork() 2. the child process should run 'cat' command. 3. pipe() system call
1. write a C program that will create a child process using fork()
2. the child process should run 'cat' command.
3. pipe() system call should be made.
4. the input entered in cat command should be read using pipe and the input should be changed to some other string.
5. example: input is 'dog' which is changed to 'fish'.
the new string should be written back to cat command by interefering with the program.
6. no printf should be used. the program should run in linux OS.
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started