Posts by João Victor Vilar • 33 points
1 post
-
3
votes1
answer60
viewsQ: In a chained list structure, why is a pointer to the node pointer used?
When reading my teacher’s slides I was left with a question regarding this structure: struct node { char item; struct node *next; }; typedef struct node Node; typedef node *Lista; It wasn’t clear to…