Question
When the user is prompted for the coefficients of the individual terms the variable part of the term must be represented i.e.
Solution Preview
This material may consist of step-by-step explanations on how to solve a problem or examples of proper writing, including the use of citations, references, bibliographies, and formatting. This material is made available for the sole purpose of studying and learning - misuse is strictly forbidden.
#include <iostream.h>#include <conio.h>
#include <process.h>
const int Mdegree = 15; //max degree of poly
void main()
{
float x, value;
float coef[Mdegree+1]; // coefficients
float pow_x[Mdegree+1]; // powers of x^
int degree, i;
do{
cout << "\nCompute value of polynomial function";
cout << "\nDegree ";...