Float | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

Float

didnt quite grasp what this command does

13th May 2018, 3:05 PM
Ariel
2 Answers
+ 1
float is a datatype (like int, char etc.) for floating point numbers, like 1.715
13th May 2018, 3:18 PM
Aaron Eberhardt
Aaron Eberhardt - avatar
+ 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.
13th May 2018, 4:30 PM
Rajeeb