Answers for "program to find the area of circle"

0

c program to find area of circle

#include <stdio.h>
#define PI 3.142
int main(){
    float R, A;
    printf("Enter the radius: n");
    scanf("%f", &R);
    A = PI * R * R;
    printf("Area is: %fn", A);
    
}
Posted by: Guest on April-19-2021
3

how to find area of circle

def circle(radius):
	3.14 * radius * radius 
circle(12)
Posted by: Guest on May-24-2021

Code answers related to "program to find the area of circle"

Python Answers by Framework

Browse Popular Code Answers by Language