typedef struct Node { char name[MAXNAME]; int value; struct Node *next; } NodeT;
Allows us to build structures like:
Note that struct Node is the same type as NodeT
struct Node
NodeT