logo

Crowdly

Browser

Add to Chrome

#include <stdio.h> void incrementer(int* a) {   a++; } in...

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

#include <stdio.h>

void incrementer(int* a)

{

  a++;

}

int main(void)

{

  int a=2;

  int i;

  for (i=1;i<2;i++){

    incrementer(&a);

  }

  printf("%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