write a program to accept radius from user and find area of a circle
Answers
Answered by
0
Answer:
y4y3g g g he e.g. e.g. e.g. he he he h3h3 3h u4 u4
Answered by
2
Answer:
mark brainliest
Explanation:
Area of a circle program in C
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