Question: un the following program and identify the pid ( Process ID ) of the parent, child, and grandchild processes. Briefly explain what the program is

un the following program and identify the pid (Process ID) of the parent,
child, and grandchild processes. Briefly explain what the program is doing. Run and show
output.
#include
#include
#include
int main()
{
pid_t pid, pid1, pid2,
pid0,pid3,pid4,pid5;
/* fork a child process */
pid = fork();
if (pid <0)
{
/* error occurred */
fprintf(stderr, "First Fork
Failed");
return 1;
}
else if (pid ==0)
{
/* child process */
pid1= getppid();
pid2= getpid();
printf("Child PID =
%d
",pid2);
printf("Parent PID =
%d
",pid1);
pid3= fork();
if (pid3<0)
{
fprintf(stderr,Second
fork failed);
return 1;
}
else if (pid3==0)
/*Grandchild process */
{
pid4=getpid();
pid5=getppid();
printf("Grandchild PID =
%d
",pid4);
printf("Child PID =
%d
",pid5);
}
}
else
{
/* parent process */
pid1= getpid();
pid0= getppid();
printf("Parent: =
%d
",pid1);
printf("Root: =
%d
",pid0);
wait(NULL);
}
return 0;

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!