Tuesday, 9 July 2013

Program to find the Area of Circle

#include <stdio.h>
void main()
{
int r;
float Area;
clrscr ();
printf("Enter the number");
scanf("%d",&r);
Area= 3.14*r*r;
printf("%f",Area);
getch();

}

No comments:

Post a Comment