Eng-Tips is the largest engineering community on the Internet

Intelligent Work Forums for Engineering Professionals

Search results for query: *

  1. Comp74

    Add and Mult two polynomials using only pointers and linked lists

    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;
Back
Top