Tag Archives: floating point

floating-point basics

It requires 32 bits to store a floating point number in memory. For example, represents number 5.0f. Computer architecture required to support floating point number is defined by the IEEE standard. Floating point number is computed by breaking 32 bits into 3 fields: sign, exponent, and mantissa. For example, the same number 5.0f can be […]