Find The Area Of Circle

 include<stdio.h>

#define PI 3.14
int main()
{
	float r,a;
	printf("Enter the radius:\n");
	scanf("%f",&r);
	a=PI*r*r;
	printf("Area of Cirlcle is %2f",a);
	
	
	return 0;
}

Post a Comment

0 Comments