Continue to Site

Eng-Tips is the largest engineering community on the Internet

Intelligent Work Forums for Engineering Professionals

  • 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
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;
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor