how to do a list in C code example
Example: c list
// Node of the list
typedef struct node {
int val;
struct node * next;
} node_t;
// Node of the list
typedef struct node {
int val;
struct node * next;
} node_t;