Add and Mult two polynomials using only pointers and linked lists
Add and Mult two polynomials using only pointers and linked lists
(OP)
I have to write a program using only pointer and linked list to add and multiply two polynomials of indefinite degrees using the struct
struct ATerm
{
int Coefficient;
int Exponent;
ATerm* NextTerm;
};
typedef ATerm* Polynomial;
struct ATerm
{
int Coefficient;
int Exponent;
ATerm* NextTerm;
};
typedef ATerm* Polynomial;




