Eng-Tips is the largest engineering community on the Internet

Intelligent Work Forums for Engineering Professionals

Add and Mult two polynomials using only pointers and linked lists 1

Status
Not open for further replies.

Comp74

Computer
Mar 3, 2001
1
0
0
US
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;
 
Status
Not open for further replies.
Back
Top