top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

C Program to find area and circumference of circle?

+1 vote
203 views
C Program to find area and circumference of circle?
posted Dec 2, 2014 by Balu

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

+1 vote
#include<stdio.h>

int main() {

   int rad;
   float PI = 3.14, area, ci;

   printf("\nEnter radius of circle: ");
   scanf("%d", &rad);

   area = PI * rad * rad;
   printf("\nArea of circle : %f ", area);

   ci = 2 * PI * rad;
   printf("\nCircumference : %f ", ci);

   return (0);
}

Output :

Enter radius of a circle : 1
Area of circle : 3.14
Circumference  : 6.28
answer Dec 2, 2014 by Shivaranjini
...