Computer Science, asked by Anonymous, 11 months ago

write a program to find the circumference of a circle​

Answers

Answered by ajinkya871
2

Answer:

2pie(r) is the formula for circumference

Answered by onlineshailendra
13

Answer:

#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);

}

plz mark as a brilliant answer frds and plz follow me too

Similar questions