C program for find area of circle on November 26, 2017 Get link Facebook X Pinterest Email Other Apps Area of Circle #include < stdio.h > #include < math.h > #define PI 3.142 void main() { float radius, area; printf("Enter the radius of a circle \n"); scanf("%f", &radius); area = PI * pow(radius, 2); printf("Area of a circle = %5.2f\n", area); } Comments
Comments
Post a Comment