struct node { int coef; int exp; struct node *link; }; typedef struct node *NODE;
what does typedef struct node *NODE indicate?
typedef struct node *NODE
IT INDICATES A PERSON WHO HAS NOT LEARNED THAT UPPERCASE IS NO GOOD
Reserve ALL UPPERCASE identifiers for MACROS.
Cheers & hth.,