Question: will the message at lie A and B be displayed , respectively?if so, how many times pid_t pid: fork(); If (pid ==0){ exec(..); //parameters are
will the message at lie A and B be displayed , respectively?if so, how many times
pid_t pid:
fork();
If (pid ==0){
exec(..); //parameters are omitted
printf("line A"); /*A*/
}
else if (pid>0) {
wait(NULL);
printf("line B"); /*B*/
}
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
