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

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
}

Leave a Comment

Your email address will not be published. Required fields are marked *