-
What is the output of this program?
#include
using namespace std;
#define PI 3.14159
int main ()
{
float radious = 10;
float Circle;
Circle = 2 * PI * radious;
cout << Circle;
return 0;
}
-
- 10
- 2
- Compilation Error
- Runtime Error
- 62.8318
Correct Option: E
In this program, we are finding the area of the circle by using concern formula.