I currently taking a C++ course and it is giving me difficulty. I was wondering if there is anyone who could help me with this example.I am supposed to create a class called polynomials that represents a polynomial as an array of terms. Each term contains a coefficient and an exponent. The class should provide the following overloaded operators:
1.the addition operator(+) to add two polynomials
2.the subtraction operator (-) to subtract two polynomials.
3.the multiplication operator (*) to multiply two polynomials.
Explanations are thoroughly appreciated. Thank you.