floating-point values use fixed-point notation:
#include <iostream> int main() { const double PI = 3.1415926; std::cout << PI << '\n'; return 0; } /* Output: 3.14159 */