logo

Crowdly

Observer le code ci-dessous : void create_process() {   if (fork()) {     p...

✅ 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" ?

More questions like this

Want instant access to all verified answers on moodle.utbm.fr?

Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!