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

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

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

    area = pi*radius*radius;

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

 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 Evaluate POSTFIX Expression Using Stack
  • C Program to Compare Two Strings using strcmp()
  • C Program to Find Area and Circumference of a circle.
  • GCD of Two Numbers Without using LCM in C
  • Decimal to Binary Conversion Using C
  • C Program to Solve Sum of Series 1-x2/2! +x4/4!-x6/6!+x8/8!-x10/10!
  • C Program to Find Length of a String Using STRLEN()
  • C Program to Print ASCII values of Characters
  • C Program to Solve Tower of Hanoi Problem Using Recursive and Non-Recursive
  • C Program for Floyd Triangle
  • C Program to Implement Doubly Linked List Operations
  • Bubble Sort in C
  • C Program to Find Sum of Odd Integers
  • C Program to Print a Message using Functions
  • C Program to Copy a String with out using strcpy() Built in Function
  • Privacy Policy
  • Cookie Policy
© programming9.com 2026
Back to top