C Program To Find Area Of Circle

C Program To Find Area Of Circle in C Programming Language ?


C Program To Find Area Of Circle, c program to find area of rectangle, c program to find area of triangle, c program to find area of circle using functions, c program to find area of circle and circumference, c program to find area of circle using pointers, c program to find area and perimeter of circle and rectangle, write a program to find out area of circle, c program to find area of square.
C Program To Find Area Of Circle


Solution For C Program To Find Area Of Circle
#include
#include
void main()
{
float radius,area;
clrscr();  // Clear Screen

printf("Enter the radius of Circle : ");
scanf("%d",&radius);

area = 3.14 * radius * radius;

printf("Area of Circle : %f",area);
getch();
}
Output :
Enter the radius of Circle : 2.0
Area of Circle : 6.14


Tags: C Program To Find Area Of Circle, c program to find area of rectangle, c program to find area of triangle, c program to find area of circle using functions, c program to find area of circle and circumference, c program to find area of circle using pointers, c program to find area and perimeter of circle and rectangle, write a program to find out area of circle, c program to find area of square.


Learn More :