Introduction - If you have any usage issues, please Google them yourself
Unary polynomial-phase addition and subtraction# include <stdio.h># include <malloc.h> typedef struct polynode/* single linked list node structure stored polynomial*/(int coef int exp struct polynode* next ) node