struct node { int coef; int exp; struct node *link; }; typedef struct node *NODE;
It makes NODE a typedef for a struct node *.
NODE
struct node *