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 Implement BINARY SEARCH
  • Simulate Bankers Algorithm for Deadlock Avoidance Using C
  • C Program to Implement STACK Operations Using Pointers
  • C Program to Delete Characters from Given String
  • Merge Sort Program in C
  • C Program to Find Sum of Individual Digits of a Positive Integer Number
  • C Program to Find Simple Interest
  • C Program to Print ASCII values of Characters
  • C Program to Search an Array Element using BINARY SEARCH
  • Bubble Sort in C
  • C Program for Matrix Multiplication
  • C Program to Design Lexical Analyzer
  • C Program to Find Sum of 5 Subjects and Percentage
  • C Program to Reverse Elements in Array
  • Implementation of Queue using Array in C
  • Privacy Policy
  • Cookie Policy
© programming9.com 2026
Back to top