MCQ Practice
This program will print . . . . . . . . as output. #include #include #include int main() { pid_t child; child = fork(); switch(child){ case -1 : perror("fork"); exit(1); case 0 : sleep(10); printf("%dn",getppid()); break; default : break; } return 0; }
Subject: Computer Science EngineeringTopic: Linux
Correct Answer: B
