After googling for a while, I found this:
However, it should be noted that the math constants are actually not part of the C++ standard. A standard's conforming way to get pi is to use an expression such as const double PI(4.0 * std::atan2(1.0, 1.0));.
Is this true, that there is no predefined PI constant that is part of the C++ standard?