Pure Programmer
Blue Matrix


Cluster Map

Project: Floating Point Underflow

Write a program to print the positive floating point value closest to 0 that is possible to represent accurately with [[IEEE doubles]]. Also print a value slightly closer to show that it becomes 0. Does the language produce an error or simply a warning on underflow?

Output
$ python3 FloatingPointUnderflow.py Small float: 1e-308 Smaller float: 1e-320 Smallest float: 0.0

Solution