WAP TO PRINT AREA OF A CIRCLE

 

#include<iostream.h>
#include<conio.h>
Void main()
{   float radius=6.0;
    float area;
    area=3.141*radius*radius;
    cout<<”Area of the circle is:”;
    getch();

 }

Comments

Popular Posts