✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
void fonction (int *p1, int *p2)
{
int tempo;
tempo =*p1;
*p1=*p2;
*p2=tempo;
}
int main (void)
{
int a=5;
int b=2;
fonction (&a, &b);
printf("%d %d",a,b);
return (0);
}
Que donne l'exécution de ce programme ?