✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
void incrementer(int* a)
{
a++;
}
int main(void)
{
int a=3;
int i;
for (i=1;i<5;i++){
incrementer(&a);
}
printf("%d\n",a);
return(0);
}
Que donne l'exécution de ce programme ?