write a program to calculate area of circle (pi*r*r). where pi=3.14 and r=5.4cm
Answers
Answered by
0
Answer:
Here we are writing a simple C program that calculates the area and circumference of circle based on the radius value provided by user.
Formula:
Area = 3.14 * radius * radius
Circumference = 2 * 3.14 * radius
Similar questions