I've tried searching for information on long double, and so far I understand it is implemented differently by compilers.
When using GCC on Ubuntu (XUbuntu) Linux 12.10 I get this:
double PId = acos(-1);
long double PIl = acos(-1);
std::cout.precision(100);
std::cout << "PId " << sizeof(double) << " : " << PId << std::endl;
std::cout << "PIl " << sizeof(long double) << " : " << PIl << std::endl;
Output:
PId 8 : 3.141592653589793115997963468544185161590576171875
PIl 16 : 3.141592653589793115997963468544185161590576171875
Anyone understand why they output (almost) the same thing?