Pages
Home
Contact Us
About Us
Privacy Policy
Download Free Turbo C/C++ Compiler
Sunday, 5 May 2013
Program In C++ to calculate Area of Circle
#include <iostream.h>
#include <conio.h>
void main()
{
clrscr();
float r,a;
cout<<"enter radius ";
cin>>r;
a=3.14*r*r;
cout<<"The area is "<<a;
getch();
}
No comments:
Post a Comment
Newer Post
Older Post
Home
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment