Input
Output
#include <iostream> using namespace std; int main() { float r = 5, a, c; cout << "Enter the radius of circle: "; cout << r << endl; a =3.14 *r *r; cout << "Area of circle : " << a << endl; c=2*3.14*r; cout << "circumference of circle : " << c; return 0; }