Posts by Semar Augusto • 11 points
1 post
-
1
votes1
answer635
viewsA: Chained list within Chained list
I recommend, first of all, creating a separate structure for the list. typedef struct Conteudo{ int valor; char naipe; }Conteudo; typedef struct Cartas{ Conteudo Item; struct Cartas *Prox_carta;…