Computer Science, asked by prabhav100, 9 months ago

Write a program in C Language:

To find the area of Circle.​

Answers

Answered by anant8583
0

Answer:

2pie r and mark me as brainliest

Answered by SandeepAW
0

Answer:

#include <stdio.h>

#include <math.h>

void main()

{

float radius, area;

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

scanf("%f", &radius);

area of circle= 3.142*radius²;

printf("Area of the circle = %.2f\n", area);

return 0;

}

Similar questions