Computer Science, asked by perculezakate, 11 months ago

write the c and c++ program to find the area of a cirlce.. thank you

Answers

Answered by priyanshi323
2

Answer:

#include<iostream.h>

#include<conio.h>

void main( )

{

float radius,area;

cout<<"\n Please enter the radius of circle:";

cin>>radius;

area = 2*3.17*radius;

cout<<"\ n Area of the circle of radius "<<radius

<<"is:";

cout<<area;

getch( );

}

Similar questions