0
Write a c program to find (a) area of a circle
3 ответов
+ 2
Try it yourself first and if there is a problem with the code ask here.
+ 1
Nani Naveen Nani
Area of circle is PI * r * r where PI = 3.1421 and r is radius which is your input.
So use this formula
float area = 3.1412 * r * r;
+ 1
tooo easy to steal this