First page Back Continue Last page Graphics
Floats
floating point number (float) : decimal number
- represents values between
- 3.40282347E+38 and -3.40282347E+38
- declared with the float command:
- useful for precise math such as division, angles in radians, etc
- can be assigned integer numbers
- ex: my_float = 10; // actually sets my_float = 10.0