C Program To Find Area Of A Circle. If you are looking for C program to calculate area of a circle, here in this tutorial we will help you to learn how to write a program to find area of a circle in C language.
C Program to Find Area of a Circle
Learn how to write a C program to find area of a circle. Writing C Program to finding area of circle can be done using various techniques but here in this program, we show how to write a C program to calculate area of a circle in a proper way.
C Program to Calculate Area of a Circle Source Code
/* C program to calculate area of a circle - AreaOfCircle.C */ #include <stdio.h> #include <math.h> #define PI 3.142 void main() { //variable declaration float radius, area; //asking user to enter the radius of a circle printf("Enter the radius of a circle \n"); //reading user entered radius value to calculate area scanf("%f", &radius); //logic to find area of a cirlce area = PI * pow(radius, 2); //area of a circle formula //printing area of a cirlce printf("Area of a circle = %5.2f\n", area); }
C Program to Find Area of a Circle Source Code
/* C program to find area of a circle - AreaOfCircle.C */ #include<stdio.h> int main() { //variables declaration float radius, area; //Taking input from user and reading it printf("\nEnter the radius of Circle : "); scanf("%d", &radius); //formula to find area of a circle area = 3.14 * radius * radius; //printing area of a circle printf("\nArea of a Circle is: %f", area); return (0); }
C Program to Find Area of a Circle Output
Enter the radius of Circle : 15
Area of a Circle is: 706.5
C PROGRAMMING tutorials
- C Program to Add Spaces in a String
- C Program To Add Digits Of A Number
- C Program To Find Leap Year
- C Program To Append Data Into A File
- C Program to Accept Only Integer Values
- C Program To Arrange Numbers In Descending Order
- C Program to Add Days to Date
- C Program to Add Two Fractions
- C Program To Reverse A Number
- C Program to Find Maximum and Minimum Numbers
- C Program to Read a Text File
- C Program to Convert Decimal to Hexadecimal
- C Program to Convert Decimal to Binary
- C Program to Convert Celsius to Fahrenheit
- C Program To Find Absolute Value
- Ternary Operator Program in C
- C Program For Addition Table Using For Loop
- Denomination Program in C
- C Program to Print Multiplication Table
- C Program Array with Example