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!

Recent content by Comp74

  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;

Part and Inventory Search

Back
Top