Computer Science, asked by NightkingRmp, 6 months ago

program
to find
area of circle​

Answers

Answered by tusharhodage5
0

Answer:

Program area to find circle

Answered by Pravalka
0

Answer:

Area of a circle program in C

Explanation:

int main() { float radius, area;

printf("Enter the radius of a circle\n");

scanf("%f", &radius);

area = 3.14159*radius*radius;

printf("Area of the circle = %.2f\n", area); // printing upto two decimal places.

return 0; }

Similar questions