Posts by leonardo • 23 points
1 post
-
2
votes1
answer631
viewsQ: List of structs
I would like to know the advantage of using a list in this way. typedef struct Pessoas { char nome[20]; int idade; struct Pessoas *prox; }pessoas; typedef struct Funcionario { pessoas *pessoa;…