-
1
- #1
Comp74
Computer
- Mar 3, 2001
- 1
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;