Posts by Alex Borges • 33 points
2 posts
-
2
votes1
answer84
viewsQ: Doubt - Dynamic list
I have the following structure for my dynamic list: typedef struct DataNode { int id; } DataNode; typedef struct Node { DataNode data; struct Node *Next; } Node; typedef struct List { int size; Node…
-
1
votes0
answers134
viewsQ: Nested Struct - Difficulty in understanding the concept
I have the following structures: typedef struct DataNode { int id; } DataNode; typedef struct Node { DataNode data; struct Node *Next; } Node; typedef struct List { int size; Node *head; } List; I…