logo

Crowdly

Nous considérons les déclarations suivantes : typedef struct _cellule_t cell...

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

Nous considérons les déclarations suivantes :

typedef struct _cellule_t cellule_t;

struct _cellule_t {

 int donnee;

 cellule_t *suivant;

};

cellule_t *f(cellule_t *liste) {

 cellule_t *tmp;

 tmp = liste;

 if(tmp == NULL) {

  return NULL;

 }

 while(tmp->suivant != NULL){

  tmp = tmp->suivant;

 }

 return tmp;

}

Que renvoie la fonction f ?

0%
100%
0%
0%
0%
0%
More questions like this

Want instant access to all verified answers on moodle-sciences-24.sorbonne-universite.fr?

Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!