Question: Consider a parent process that has forked a child in the code snippet below. If the parent executes the statement count =1 before the

Consider a parent process that has forked a child in the code snippet below. If the parent executes the statement "count =1 " before the child. Now, what is the value of count printed by the code? int count =0 ret = fork () if ( ret ==0) {printf("countinchild=",count);} else { count =1;}
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
