Question: Write a C program that creates a new process in the Linux system. When a process calls the system call to create a new process,
Write a C program that creates a new process in the Linux system. When a process calls the system call to create a new process, it is deemed the parent process and the newly created process is its child.
In the C program, define a global variable COUNT and set its value greater than 200.
#define COUNT value
From the main(), call the following functions, from child process and parent process respectively:
child()
parent()
In the child function void child(void), use a for loop to print the line numbers from 1 to COUNT twith the statement
The child process is executing line
In the parent function void parent(void), use a for loop to print the line numbers from 1 to COUNT with the statement
The parent process is executing line
2. Create a zombie process for the above example.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
