Question: Given the code below: int maino { pid_t pid; int value = 10: pid = forko; if (pid == 0) { /* child */ value

Given the code below: int maino { pid_t pid; int value = 10: pid = forko; if (pid == 0) { /* child */ value += 8; printf("CHILD: value = %d ", value); /* Line A */ exit(0); } else { /* parent */ value += 5; wait(NULL); printf("PARENT: value = %d ", value); /* Line B */ exit(0); } } a) Explain what the fork() call does. Be specific. b) which process runs first after the fork, the parent or the child? Explain why. b) What is printed at Line A? Explain why. c) What is printed at Line B? Explain why
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
