+ 1
Float
didnt quite grasp what this command does
2 Answers
+ 1
float is a datatype (like int, char etc.) for floating point numbers, like 1.715
+ 1
hi,
Float Command is a shortened term for "floating point." By definition, it's a fundamental data type built into the compiler that's used to define numeric values with floating decimal points. C, C++, C# and many other programming languages recognize float as a data type. Other common data types include int and double.
The float type can represent values ranging from approximately 1.5 x 10-45 to 3.4 x 1038, with a precisionâ the limit of digits â of seven.
Float can contain up to seven digits in total, not just following the decimal point â so, for example, 321.1234567 cannot be stored in float because it has 10 digits. If greater precisionâmore digitsâis necessary, the double type is used.