Computer Science, asked by sivashankar, 1 year ago

find area of circle using c program

Answers

Answered by Sarthak701
6
area of circle using c program

3

4

5

6

7

8

9

10

11

12

13

#include<stdio.h>

 

int main() {

   float radius, area;

 

   printf("\nEnter the radius of Circle : ");

   scanf("%d", &radius);

 

   area = 3.14 * radius * radius;

   printf("\nArea of Circle : %f", area);

 

   return (0);


sivashankar: thanks
Sarthak701: wlcm bro
Similar questions