(Taking Input From User) Calculate Area of a Circle

PHOTO EMBED

Sun Apr 14 2024 11:26:26 GMT+0000 (Coordinated Universal Time)

Saved by @Amlan #c

#include<stdio.h>
int main(){
    float Radius;
    printf("Enter Radius : ");
    scanf("%f",&Radius);

    float Area = (3.141592653589793238462643383279502884197*Radius*Radius);
    printf ("The Area of the circle is : %f " , Area);

    return 0;
}
content_copyCOPY