Question: The following program invokes the fork() system call. Assuming the childs process id is 1000, what will the value of x and tempPid be in
The following program invokes the fork() system call. Assuming the childs process id is 1000, what will the value of x and tempPid be in the parent and child process after the instructions are executed?
Child tempPid: ___________ Child x: ______________
Parent tempPid: _________ Parent x: ______________
int x=0;
pid_t tempPid = fork(); if (tempPid==0)
{
x=1;
}
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
