Write a program in C Language:
To find the area of Circle.
Answers
Answered by
0
Answer:
2pie r and mark me as brainliest
Answered by
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
English,
4 months ago
Physics,
4 months ago
English,
9 months ago
Social Sciences,
1 year ago
English,
1 year ago