Write A C Program To Find Area Of A Circle

//Write a c program to find the area of circle
#include <stdio.h>
int main()
{
    float radius,area;
    printf("Enter the radius of the circle: \n");
    scanf("%f",&radius);
    area=3.14159*radius*radius;
    printf("Area of the circle is= %f", area);
    return 0;
}

Comments

Popular posts from this blog

Automations and robotics

Solid Pattern Program In Java Language

Palindrome Pattern Program In Java Language