✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Let be the following functions :
void fonction1(t_cell *ptr_c){ printf("%d ", ptr_c->value); fonction1(ptr_c->next);}
void fonction2(t_list mylist){ fonction1(mylist.head);}
What is the display obtained if we call the function2 on the following list ?