Computer Science, asked by ansa389060, 10 months ago

write a program to find the area of circle? c-program...Need full steps​

Answers

Answered by varadhabala29
2

Answer:

void main()

{

float r;

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

scanf("%f",&r);

printf("The area of circle=%f",3.14*r*r);

}

Similar questions