Write an algorithm to calculate the circumference of semicircle.
Answers
Answered by
1
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