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

Join The Discussion