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