#include
using namespace std;
const double MYCONSTANT = 3.1416;
void printMyConstant() {
cout << MYCONSTANT;
}
int main () {
const double MYCONSTANT = 3.14159;
printMyConstant();
return 0;
}
What is going to be output by the above program?