According to the following site: http://en.cppreference.com/w/cpp/language/types
"double - double precision floating point type. Usually IEEE-754 64 bit floating point type".
It says "usually". What other possible formats/standard could C++ double
use? What compiler uses an alternative to the IEEE format? Or architecture?
doubles
. – MSalters