Answers for "program to calculate area of circle"

C
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
0

calculate area of circle

3.14 * radius * radius = area
Posted by: Guest on April-23-2021

Code answers related to "program to calculate area of circle"

Code answers related to "C"

Browse Popular Code Answers by Language