Friday 15 September 2017

C program that accepts radius of a circle and print its area

#include<stdio.h>
#include<conio.h>

void main()
{
float radius,area;
clrscr(); //to clear the screen
printf(“Enter radius of the circle:”);
scanf(“%f”,&radius);
area=3.14*(radius*radius);
printf(“Area=%f”,area);
getch(); //to stop the screen
}

0 comments:

Post a Comment

Tech UOG