I need to store a node list in a struct my code looks like this:
typedef struct node { int data; struct class *next; } node; typedef struct nodelist