Write the C program that evaluates the value of y=pow(c,1+x), for x in the interval: aa. Scan a double value c>0. Then, scan x and evaluate y and y/x. If x is not from the required interval a..........................................................................................
Your output should look like:
Enter a and b>a:
0.5 2.75
Enter c>0:
1.5
enter a double a0.25
The x value is = 0.250000
You didn't enter x from aEnter x from a2.5
The y value is = 4.133514
The y/x value is = 1.653406
......
On the other hand, if you don't enter proper x twice in a row, you output
should look like:
Enter a and b>a:
0.5 2.75
Enter c>0:
1.5
enter a double a0.25
The x value is = 0.250000
You didn't enter x from aEnter x from a3.1
You didn't enter x from a