To calculate area and circumference of the circle

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.

#include<stdio.h>
void main()
{
float area, radius, circum;
clrscr();
printf(“\n\n\t ENTER THE RADIUS OF THE CIRCLE…:”);
scanf(“%f”, &radius);
area = 3.142 * radius * radius;
circum = 2 * 3.142 * radius;
printf(“\n\n\t THE AREA OF THE CIRCLE IS…: %f”, area);
printf(“\n\n\t THE CIRCUMFERENCE OF THE CIRCLE IS…: %f\n”, circum);
getch();
}

Download exe and source code here.

Editorial Team
Editorial Team

We are a group of young techies trying to provide the best study material for all Electronic and Computer science students. We are publishing Microcontroller projects, Basic Electronics, Digital Electronics, Computer projects and also c/c++, java programs.

Leave a Reply

Your email address will not be published. Required fields are marked *

Get the latest updates on your inbox

Be the first to receive the latest updates from Codesdoc by signing up to our email subscription.

    StudentProjects.in