93.9k views
1 vote
Write a basic program to calculate the area of a circle​

1 Answer

4 votes

Answer: int main() {

float radius, area;

printf("\\Enter the radius of Circle : ");

scanf("%d", &radius);

area = 3.14 * radius * radius;

printf("\\Area of Circle : %f", area);

return (0);

Step-by-step explanation:

User Girish
by
7.7k points