Files

5 lines
62 B
C

typedef struct Node {
struct Node *next;
int value;
} Node;