|
Let us start from the beginning. Here discusses a model
program for calculating the circumference and the area of the
circle, where the radius is specified by the user.
Logic: As we know, Circumference is 'Pi' times diameter of the circle
and Area is 'Pi' times the radius squared. Implementing the
same is the main concept here.
Here, we declared three floating point numbers, to scan
user inputs, and to store and display the values after
calculation. Displayed a note to the user to enter radius,
scanned through the function which is in the included header
library "stdio.h". Area and the circumference are calculated
as discussed.
|