Find Circumference of circle in C++

Advertisements

Prev Tutorial Next Tutorial

Find Circumference of Circle Program in C++

In below C++ program, we will calculate circumference and area of circle given radius of the circle. The area of circle is the amount of two-dimensional space taken up by a circle. We can calculate the area of a circle if you know its radius. Area of circle is measured in square units.

Circumference of circle is the length of the curved line which defines the boundary of a circle. The perimeter of a circle is called the circumference.

c++ program to find circumference of circle

Formula

Circumference or Circle = PI X Diameter

Where, Where PI is a constant which is equal to 22/7 or 3.141(approx)

Program to Find Circumference of Circle

#include<iostream.h>
#include<conio.h>
#define PI 3.141

void main()
{
 float radius, circumference;
 clrscr();
 cout<<"Enter radius of circle\n";
 cin>>radius;
 // Circumference of Circle = 2 X PI x Radius
 circumference = 2*PI*radius;
 cout<<"Circumference of circle: "<<circumference;
      
getch();
}

Output

Enter radius of circle: 3
Circumference of circle: 18.84
c++ program to find circumference of circle
Prev Tutorial Next Tutorial

Google Advertisment

Buy This Ad Space @$20 per Month, Ad Size 600X200 Contact on: hitesh.xc@gmail.com or 9999595223

Magenet is best Adsense Alternative here we earn $2 for single link, Here we get links ads. Magenet

For Projects 9999595223

Google Advertisements


Buy Websites 9999595223

Buy College Projects with Documentation Contact on whatsapp 9999595223. Contact on: hitesh.xc@gmail.com or 9999595223 Try this Keyword C++ Programs

Advertisements