Back To C++ Basic Index
//program to input radius of circle and find area of circle #include
#include
void main() { float radius; float area; clrscr(); cout<<"enter radius of circle "; cin>>radius; area=3.14*radius*radius; cout<<"area of circle is "<