Question

C program language

Plot the function y = x4 - x2 over the range -1 .2 < x < +1 . 2 Choose the y-axis scale so that the function can be seen everywhere over this x-range and yet is not so small that details are hard to see.

0 0
Add a comment Improve this question Transcribed image text
Answer #1

Answer :

C Code:

#include <stdio.h>
#include <math.h>
int main()
{
float x,y;
for(x=-1.2;x<=1.2;x=x+0.2)
{
y=pow(x,4)-pow(x,2);
printf("x=%f, y=%f",x,y);
printf("\n");
}
return 0;
}

Add a comment
Know the answer?
Add Answer to:
C program language Plot the function y = x4 - x2 over the range -1 .2...
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for? Ask your own homework help question. Our experts will answer your question WITHIN MINUTES for Free.
Similar Homework Help Questions
ADVERTISEMENT
Free Homework Help App
Download From Google Play
Scan Your Homework
to Get Instant Free Answers
Need Online Homework Help?
Ask a Question
Get Answers For Free
Most questions answered within 3 hours.
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT