C programme to Find the radius of Circle

 #include <stdio.h>

#include <stdlib.h>


int main()

{

    float R;

    printf("Enter the Value of Radius: ",R);

    scanf("%f",&R);

    printf("The Area of the Circle is: %f", 22*R*R/7);

    return 0;

}


Comments

Popular posts from this blog

C Programme to find Area Of Rectangle

C programme to reverse the number