Tech Study

How To Convert Area Of Circle In C++ Program

Introduction:

Area Of Circle

C++ Program to Calculate Area of Circle. I have used Dev-C++ IDE for debugging purpose. But you can use any C programming language compiler as per your compiler availability.

#include<iostream>
#define PI 3.141
using namespace std;

int main()
{
    float radius, area;
    cout << "Enter Radius: ";
    
    cin >> radius;
    area = PI * radius * radius;
    
    cout << area;
    return 0;
}

Result

Cplusplus-Program-to-Calculate-Area-of-Circle
Cplusplus-Program- to calculate Area Of Circle

To learn more about c++ viste these links :

C++ Program to Calculate Area of Square

C++ Program to Calculate Area of Rectangle

TaggedC++ Program to Calculate Area of Circle

Java Final keyword

Introduction : java final keyword The final keyword present in Java programming language is generally used for restricting the user. …

Read more

C++ Memory Management: new and delete

C++ Memory Management We know that arrays store contiguous and the same type of memory blocks, so memory is allocated …

Read more