7.20.1.1 The atof function
Synopsis
#include <stdlib.h>
double atof(const char *nptr);
Description
The atof function converts the initial portion of the string pointed to by nptr to double representation. Except for the behavior on error, it is equivalent to
strtod(nptr, (char **)NULL)
Returns
The atof function returns the converted value.
Forward References