Alejandro Colomar wrote: > strtod(3) defers to strtol(3) for the example program.
Is this adequate? strtod() can produce underflow (e.g. for "1e-500"). In this case all implementations except MSVC set errno to ERANGE. This is a case that cannot happen in strtol(). Bruno