I have tried implementing an os program. Here is the code:
#include<sys/types.h>
#include<stdio.h>
#include<unistd.h>
int main()
{
pid_t pid, pid1;
pid = fork();
if(pid<0)
{
fprintf(stderr,"Fork Failed");
return 1;
}
else if(pid == 0) /* child process */
{
pid1 = getpid();
printf("child: pid = %d\n",pid);
printf("child: pid1 = %d\n",pid1);
}
else /* parent process */
{
pid1 = getpid();
printf("parent: pid = %d\n",pid);
printf("parent: pid1 = %d\n",pid1);
}
return 0;
}
and its o/p:
parent: pid = 1836
parent: pid1 = 1835
child: pid = 0
child: pid1 = 1836
can somebody explain me how is it working , i.e. the sequence of the execution for the if/else-if/else statements written in the code. I would think once the else if condition becomes true then else part is not executed, however here it has executed the parent process part i.e. else part and then the child part ..... how come?

Ifandelsewill be executed in context of parent and child – Alok Save Nov 14 '12 at 12:19