Strtod

From Wikipedia, the free encyclopedia

The correct title of this article is strtod. The initial letter is shown capitalized due to technical restrictions.

strtod is a C language function that converts an ASCII string to a double precision value. It is utilized via the following sequence:

strtod(restrict nptr, char* const char** restrict endptr);[1]

Strtod is included in the stdlib.h header file, the standard general-purpose C library.

[edit] See also