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