MCQ Practice
What is the output of this program? #include #include #include int main() { pid_t child; int status; child = fork(); switch(child){ case -1 ; perror("fork"); exit(1); case 0 : printf("%dn",getppid()); break; default : printf("%dn",getpid()); wait(&status); break; } return 0; }
Subject: Computer Science EngineeringTopic: Linux
Correct Answer: A
