Question: In C language: This assignment modifies your quadratic formula plotter to be array-based. Retained from Before: Ask for input as you did before. You no
In C language:

This assignment modifies your quadratic formula plotter to be array-based. Retained from Before: Ask for input as you did before. You no longer need to solve for the roots of the quadratic, and you may remove those functions from your code. . And Now, Something Different: You will still evaluate y = ax+ bx + c and print the results, for: 2 (0.0, 1.0, 2.0, 3.0,...,10.0) x (1.0, 0.1, 0.01, ..., 0.00000001) x (1.0, 10.0, 100.0,..., 1 000 000 000.0) 2 (-10.0,-9.0,-8.0,..., 8.0,9.0, 10.0) But now, there are additional caveats: You must create arrays of all four of the above sets of values You must use loops to initialize these arrays You must create arrays to store the y-results for all four of the above sets of values You still must have a single function that returns y = ax? +bx+c for a given a, b, c, and x; and use the loops to call it repeatedly You must also have a single function that: Accepts a, b, and c Accepts an array of x values Accepts a count of those x values Accepts an array buffer for y values o Writes the computed y value for each x value into the corresponding spot in the y array buffer You must still format the printouts nicely, and make sure to distinguish between the four sets of values so the output is readable
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
