C Programmer: float type

To store fractional numbers or floating-point numbers, the float type is used, which does not have high precision, like the double type (double precision type). The float type, like int, occupies 4 bytes in memory.
Back to Top