logo

Crowdly

Browser

Add to Chrome

#include <stdio.h> void f(int l,int m , int* n,int *o) {   l++; ...

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

#include <stdio.h>

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 ?

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