✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Observer le code ci-dessous :
void create_process() {
if (fork()) {
printf("This is the parent\n");
} else {
printf("This is the child\n");
}
printf("Exiting\n");
}
Combien de fois le programme va-t-il afficher la phrase "Exiting" ?
Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!