Examveda

This program will print . . . . . . . . as output.
#include<stdio.h>
#include<stdlib.h>
#include<unistd.h>
 
int main()
{
    pid_t child;
    child = fork();
    switch(child){
        case -1 :
            perror("fork");
            exit(1);
        case 0 :
            sleep(10);
            printf("%d\n",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

Answer: Option B


This Question Belongs to Computer Science >> Linux

Join The Discussion

Related Questions on Linux