#include<studio.h>
#include<conio.h>
int main()
{
int r=8;
float area =(3.14)*r*r;
clrscr();
printf("the area of the circle is %f",area);
getch();
return 0;
}
write a program to find area of circle.
Under discussion
Comments
- Popular
- New
- Old
You must be signed in to leave a comment
This page doesn't have any comments yet