Posts by António • 61 points
1 post
-
6
votes1
answer545
viewsQ: How to clone a list linked in c?
How can I make a linked list without being recursive, I have this so far. Code: typedef struct slist *LInt; typedef struct slist { int valor; LInt prox; }Nodo; LInt clone (LInt a) { LInt k;…