Math, asked by JJAVA, 1 year ago

a program for generating area of circle

Answers

Answered by Anonymous
0

void main()

{

float radius, area;

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

scanf("%f", &radius);

area = PI * pow(radius, 2);

printf("Area of a circle = %5.2f\n", area);

}

Similar questions