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!

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