Question: what will the output be e) What will be the output of the following code segment at at lines A, B, C, and D? Assume
e) What will be the output of the following code segment at at lines A, B, C, and D? Assume that actual process ids of the child and parent are 3608 and 3600 , respectively. [4] int main() ( pid t pid, pidl; pid =fork(); if (pid ==0)(1 pidi =getpid(); printf("child: pid = 8d",pid); /A/ printf("child: pidl = 8d", pidl) ;/B/ ) else pid1 =getpid(); printf("parent: pid = sd", pid); /c/ printf("parent: pid1 = 8d", pid 1);/D/ wait (NULL); ) return 0 ; 1
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
