✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
void f(int l,int m , int* n,int *o)
{
l++;
m++;
(*n)++;
(*o)++;
}
int main()
{
int i=2,j=3,k=4;
int *p;
p=&j;
f(i,j,p,&k);
printf("%d %d %d %d\n",i,j,k,*p);
return (0);
}
Que va afficher ou faire ce programme ?