Computer Science, asked by jtmsahoo, 3 months ago

write a program to find out perimeter of a circle ​

Answers

Answered by diyabhana
0

Answer:

C Program

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

Answered by kumarghoshabhijit
0

Answer:

your answer is

EXPERT ANSWERS

FOLLOW ME NOW

Attachments:
Similar questions