Sunday 29 April 2012

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
}


Related Posts Plugin for WordPress, Blogger...