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;
}
#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
Post a Comment