Question: Please help me get the outcome in the sample output for this question. I know I have to use while statements in all three functions

Please help me get the outcome in the sample output for this question. I know I have to use while statements in all three functions void, double, and int. Im just a little confused, thanks in advance.  Please help me get the outcome in the sample output for
this question. I know I have to use while statements in all

Create a directory called lab9 on your machine using mkdir lab9 and complete the program lab9.c showr below. You must write the three functions shown in red (printPoly, evaluate, terms). The code below can be downloaded from the course Blackboard site. #include # include #include typedef struct poly double coeff; int degree struct poly next; Poly void printPoly (Poly) double evaluate (Poly,double) int terms (Poly int main (void) Poly *myPoly = NULL ; printf("Enter the coefficient and degree of a term to add to the polynomial : ") double c int d scanf ("%lf %d", &c, &d); while ( ! ( fabs (c-0.0) coeff = c; newNode-degree = d; newNode->nextmyPoly: myPoly = newNode; printf("Enter a coefficient and degree or 0 0 to stop adding terms" scan f ( " % 1 f %d", &c , &d); printf(" ln") printf("The polynomial is : ") printPoly (my Poly) printf("nn) printf ("The polynomial has %d terms ", terms (myPoly) ); printf("Polynomial evaluation enter a value for x:") double x scanf ("%lf", 6x); printf("tThe value of the polynomial at x-lf is ifin", x, evaluate (myPoly, x) return 0 A sample execution of this program is shown below Enter the coefficient and degree of a term to add to the polynomial 0.5 0 Enter a coefficient and degree (or 0 0 to stop adding terms1.5 1 Enter a coefficient and degree (or 0 0 to stop adding terms) 2.5 2 Enter a coefficient and degree (or 0 0 to stop adding terms)3.5 3 Enter a coefficient and degree (or 0 0 to stop adding terms) 0 0.500000 x0 The polynomial is3.500000 x3 2.500000 x*2 1.500000 x1 The polynomial has 4 terms Polynomial evaluation enter a value for x5 The value of the polynomial at x=5.000000 is 508.000000

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!