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; }

A

0

B

1

C

an integer value except 0 and 1 i.e. PID of a process

D

none of the mentioned

Correct Answer: B