Advertisement

WAP IN C TO FIND AREA OF CIRCLE


AREA OF CIRCLE 

 #include<stdio.h>

#define PI 3.14
int main()
float a,r;
printf("enter the radius of circle \n");
scanf("%f",&r);
a=PI*r*r;
printf("area of circle is %f",a);
    
    return(0);
}

Post a Comment

0 Comments