A

Admin • 833K Points
Coach

Q. What is the output of this program?

Code:
#include
using namespace std;
#define PI 3.14159
int main ()
{
float radious = 10;
float Circle;
Circle = 2 * PI * radious;
cout << Circle;
return 0;
}
  • (A) 10
  • (B) 2
  • (C) Compilation Error
  • (D) 62.8318
  • Correct Answer - Option(D)
  • Views: 21
  • Filed under category C++
  • Hashtags:

No solution found for this question.
Add Solution and get +2 points.

You must be Logged in to update hint/solution

Discusssion

Login to discuss.

Be the first to start discuss.