What is the lower limit of floating point values?

What is the lower limit of floating point values?

There are two answers – Normalized (N) vs Denormalized (DN)

single (32-bit)
N: -3.4E+38 to +3.4E+38
DN: ±1.5e-45 to ± 3.4e38

double (64-bit)
N: -1.7E+308 to +1.7E+308
DN: ±5.0e-324 to ± 1.7e308

https://www.codeproject.com/Tips/1225205/What-is-the-Lower-Limit-of-Floating-Point

https://www.codeproject.com/Tips/1225205/What-is-the-Lower-Limit-of-Floating-Point

2 thoughts on “What is the lower limit of floating point values?

Leave a Reply