Modify your code from Part A to make sure that the parent waits for the child to terminate after the fork and then breaks from the loop and exits. Here’s some skeletal pseudo code for that loop: for (i= 1 to n) { fork() ……… if parent: waitpid(pid) break }