Question

Input the radius of a circle, and output the area. (The formula for area is PI...

Input the radius of a circle, and output the area. (The formula for area is PI times r squared, where PI is 3.141592653589793 and r is the radius.)

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

Here I wrote the code in C programming language. Please comment for further assistance.

#include <stdio.h>

int main()

{
double pi = 3.141592653589793;
double r;
scanf("%lf",&r);
printf("Area: %lf",pi*r*r);

return 0;
}

Add a comment
Know the answer?
Add Answer to:
Input the radius of a circle, and output the area. (The formula for area is PI...
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