What is the output of the given code?
#include iostream
using namespace std;
#define PI 3.14159
int main ()
{
float r = 8;
float circle;
circle = 2 * PI * r;
cout circle;
return 0;
}

Posted on by