Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations cowski on being selected by the Eng-Tips community for having the most helpful posts in the forums last week. Way to Go!

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

Status
Not open for further replies.

Comp74

Computer
Joined
Mar 3, 2001
Messages
1
Location
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.

Part and Inventory Search

Sponsor

Back
Top