Does the code below run on your compilers? Its supposed to find the area of a circle in cpp | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Does the code below run on your compilers? Its supposed to find the area of a circle in cpp

float r,a;     cout<<"Enter Radius : ";     cin>>r;     a=3.14*r*r;     cout<<"Area of Circle : "<<a;

10th Jul 2017, 4:30 PM
Ken Ng'ang'a Ngugi
0 Answers