#include
#include
int main(void)
{
pid_t pid;
pid = fork();
if (pid > 0)
printf(Im the parent!
);
else if (pid == 0)
printf(Im the child!
);
else
printf(Im the initial process!
But something went wrong
);
printf(Im here now, bye!
);
return 0;
}

![[SOLVED] CS #include](https://assignmentchef.com/wp-content/uploads/2022/08/downloadzip.jpg)

![[Solved] Python program to figure out if it is better to pay off your loans or pay off the minimal](https://assignmentchef.com/wp-content/uploads/2022/08/downloadzip-1200x1200.jpg)
Reviews
There are no reviews yet.