Javatpoint Logo
Javatpoint Logo

Area of Circle program in C

Programming can be used to quickly and easily solve a basic mathematical issue, such calculating the area of a circle. In this blog post, we'll go through how to create a C program that determines a circle's area based on its radius. We'll go over the program's syntax, an example, and output.

Syntax:

The syntax of the C program to calculate the area of a circle is as follows:

Example:

Output:

Enter the radius of the circle: 5
The area of the circle is: 78.539749

Explanation:

The standard input-output header file "stdio.h" is included in the first line of the code. The constant PI is defined as 3.14159 on the line after that. The area of the circle is calculated using this constant.

We declare the radius and area as two variables in the main function. After that, the printf function is used to ask the user to provide the circle's radius. The scanf function is used to save the value entered by the user in the variable radius.

Next, we use the calculation PI * radius * radius to determine the circle's area. The variable region holds the outcome. After that, the printf function is used to show the user the circle's area.

A basic mathematical concept that is applied in many disciplines, including engineering, physics, and architecture, is computing the area of a circle. A = πr², where r is the radius and is a mathematical constant that roughly equals 3.14, is the formula for computing the area of a circle.

It's crucial to choose the right data type for variables while creating a program to figure out the area of a circle. In this program, the radius and area of the variables are represented using float data types. It is due to the fact that a circle's area and radius can both be expressed as decimal values.

It's crucial to format your program properly in addition to declaring variables and choosing the right data type. In our illustration, we've used the printf function to show the user the circle's area. The result is formatted as a floating-point value using the %f specifier.

It's also crucial to remember that we defined the constant PI with the value 3.14159 using a preprocessor command. Instead of hard coding the value of PI in the formula, we can easily modify it in one place and have the change appear in all calculations by using a constant.

To make sure the program is functioning properly during testing, it must be tested with various values. It can be accomplished by changing the radius parameter and then confirming that the program has returned the right region.

To avoid the program failing or producing false values, you can also add error handling to it. For instance, you could determine whether the radius the user entered was a positive number. You can display an error notice and request that the user submit a valid value if the radius is zero or negative. You may strengthen and improve the usability of your program by adding error handling.

Code:

Output:

Enter the radius of the circle: 5
The area of the circle is: 78.539749

Conclusion:

In conclusion, computing a circle's area by programming is an easy process. In this blog post, we covered how to create a C program that determines a circle's area based on its radius. We discussed the program's syntax, example, and output. In this blog, the procedures outlined can be used to quickly determine a circle's area using programming.







Youtube For Videos Join Our Youtube Channel: Join Now

Feedback


Help Others, Please Share

facebook twitter pinterest

Learn Latest Tutorials


Preparation


Trending Technologies


B.Tech / MCA