C Program to find area and circumference of circle
Learn C - C tutorial - c program to find area and circumference of circle - C examples - C programs
C Program to find area and circumference of circle
- This program accepts one value(float value) from user and stores it into radius parameter.
- In this program we have to calculate the area and circumference of the circle. We have following 2 formulas for finding circumference and area of circle.
- Area of circle = PI * R * R
- Circumference of Circle = PI * R * 2