programming9
  • Flowcharts
  • Programs
      • Back
      • C Programs
      • C++ Programs
      • Java Programs
      • Python Codes
      • HTML Codes
      • Java Script Codes
      • SQL Codes
  • Tutorials
      • Back
      • Java Tutorials
      • Competitive Programming
      • Python Tutorials
      • C Programming
  • Blog
  • Login

C Program to find Area of a Circle

Written by: RajaSekhar
  • basic c programs
  • cprogram
  • circlearea
#include<stdio.h>
#include<conio.h>
int main()
{
    float radius,area,pi=3.14;

    printf("Enter the Radius of a Circle : ");
    scanf("%f",&radius);

    area = pi*radius*radius;

    printf("Area of Circle is: %f",area);
    return 0;
}

OUTPUT:

Enter the Radius of a Circle : 2
Area of Circle is: 12.560000
Previous article: C Program to Find Area of Rectangle Prev Next article: C Program for Sum of Digits of a Number using Recursion Next
  • C Program to Print Pascal Traingle
  • C Program to Find Second Largest Number in an Array
  • Swapping of Two Numbers Using Call By Reference in C
  • FCFS CPU Scheduling Algorithm Simulation Using C
  • C program to find Sum of Digits of a Positive Integer Number
  • C Program to Find Factorial of a Number using While Loop
  • C Program for String Concatenation without using strcat()
  • C Program to Calculate NCR
  • C Program for Optimal Page Replacement Algorithm
  • C Program to Find Address locations of Array Elements Using Pointers
  • C Program for Addition of Two Numbers
  • C Program to Check Given Number is PRIME or Not
  • C Program to Solve Sum of Series 1-x2/2! +x4/4!-x6/6!+x8/8!-x10/10!
  • C Program to Perform Operations on Doubly Linked List
  • C Program to Check the Leap Year
  • Privacy Policy
  • Cookie Policy
© programming9.com 2025
Back to top