Home Area of Circle
mod_vvisit_countermod_vvisit_countermod_vvisit_countermod_vvisit_countermod_vvisit_countermod_vvisit_counter
mod_vvisit_counterToday1
mod_vvisit_counterYesterday0
mod_vvisit_counterThis week1
mod_vvisit_counterLast week0
mod_vvisit_counterThis month1
mod_vvisit_counterLast month0
mod_vvisit_counterAll days4219

We have: 1 guests online
Your IP: : 38.107.179.230
 , 
Today: May 21, 2012

Tracker

visitors by country counter
flag counter

C Program To Find The Area Of A Circle

#include<stdio.h>
#include<conio.h>
void main()
{
float a,r;
clrscr();
printf("Enter radius:\n");
scanf("%f",&r);
a=3.14*r*r;
printf("Area of circle=%f",a);
getch();
}

Sample Run:
Enter radius:
5
Area of circle=78.500000