C++ double Keyword
Definition and Usage
The double
keyword is a data type that is usually 64 bits long which stores fractional numbers.
With 64 bits it can store positive and negative numbers with values between 1.7e−308 and 1.7e+308.
Related Pages
Read more about data types in our C++ Data Types Tutorial.