C program, algorithm, flowchart & explanation to calculate the area and circumference of a circle.
Write a C program to calculate the area and circumference of a circle:- Here, we have to write a simple C program that takes a radius value by the user and gives circumference and area values as output. Formulae used:- Area= Pi*radius*radius Circumference= 2*Pi*radius Explanation & Program code:- We will ask the user to enter …