Question: can you please identify the errors in this code so it will execute #include #include #include int main() { pid_t pid, pid1; /* fork a

can you please identify the errors in this code so it will execute

#include

#include

#include

int main()

{

pid_t pid, pid1;

/* fork a child process */

pid = fork();

if (pid < 0) { /* error occurred */

fprintf(stderr, "Fork Failed");

return 1;

}

else if (pid == 0) { /* child process */

pid1 = getpid();

printf("child: pid = %d",pid); /* A */

printf("child: pid1 = %d",pid1); /* B */

}

else { /* parent process */

pid1 = getpid() ;

printf("parent: pid = %d",pid); /* C */

printf("parent: pid1 = %d" ,pid1); /* D */

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!