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 Radius and Circumference of a Circle

Details
Written by: RajaSekhar
Category: C Programs
  • basic c programs
  • cprogram
  • area
  • circumference
#include<stdio.h>

int main()
{
    int radius;
    float PI=3.14,area,ci;

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

    area = PI * radius * radius;
    printf("\n Area of a Circle : %f ",area);

    ci = 2 * PI * radius;
    printf("\n Circumference of a Circle is : %f ",ci);

    return(0);
}

 OUTPUT:

 Enter the Radius of Circle: 5

 Area of a Circle : 78.500000
 Circumference of a Circle is : 31.400002
Previous article: C Program to Find Smallest Element in the Array Prev Next article: C Program to Find Factorial of a Number using Recursion Next
  • C Program to Sort List of Strings
  • C Program to Find Area and Circumference of a circle.
  • C Program to Print PRIME Numbers in a Given Range
  • Merge Sort Program in C
  • C Program to Calculate Sum of Odd Values in an Array
  • C Program to Calculate Sum of Marks to Demonstrate Structures
  • C Program to Print Elements of Array Using Pointers
  • C Program to Find Sum of Individual Digits of a Positive Integer Number
  • C Program to Find Area of a Square
  • C Program for Sum of Squares of Numbers from 1 to n
  • C Program to Find Address Locations of Variables
  • C Program to Count Total Number of Digits in a Number
  • C Program to Convert Infix to Postfix Expression using Stack
  • C Program to Find Length of a String Using STRLEN()
  • C Program for Circumference of a Circle
  • Privacy Policy
  • Cookie Policy
© programming9.com 2026
Back to top