C Program to Calculate Area of Circle

Hello coders, in this post we will how to write C Program to Calculate Area of Circle. This is a very basic C program.

As you already know that this site does not contain only c programming solutions here, you can also find the solution for other problems. I.e. Web Technology, Data StructuresRDBMS ProgramsJava Programs Solutions,  Fiverr Skills Test answersGoogle Course AnswersLinkedin AssessmentLeetcode Solutions, and Coursera Quiz Answers.

C Program to Calculate Area of Circle
C Program to Calculate Area of Circle

if you want to learn C programming free of cost please visit:

C Program to Calculate Area of Circle

#include<stdio.h>
int main()
{
     /* variable declaration part */
     int r;
     float area;
     /* Reading part */
     printf("Enter Radius : ");
     scanf("%d",&r);
     /* Processing part */
     area=3.14*r*r;
     /* Output part */
     printf("\nArea of Circle = %f",area);
     return 0;
}

Output

Enter Radius : 7
Area of Circle = 153.860001

Conclusion

I hope after going through this post, you understand how to write a C Program to Calculate Area of Circle, if there is any case program is not working and showing an error please let me know in the comment section.

Sharing Is Caring

Leave a Comment