Consider:  #include #include #include int main() { pid_t…

Consider:  #include #include #include int main() { pid_t pid = fork(); if(pid == 0) { printf(“Child exiting\n”); exit(0); } else { sleep(10); printf(“Parent exiting\n”); } return 0; } During the 10-second sleep period, what is the state of the child process?