logo

Crowdly

Browser

Add to Chrome

#include <stdio.h> void fonction(int *a) {   *a = *a + 10; }...

✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.

#include <stdio.h>

void fonction(int *a)

{

  *a = *a + 10;

}

int main(void)

{

  int a = 1234;

  int *ptr_a;

  ptr_a = &a;

  a++;

  fonction(ptr_a);

  a++;

  printf("a = %d\n", a);

  return 0;

}

Que donne l'exécution de ce programme ?

More questions like this

Want instant access to all verified answers on moodle.insa-toulouse.fr?

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

Browser

Add to Chrome