NOME
atof − converte uma string para um valor double.
SINOPSE
#include <stdlib.h>
double atof(const char *nptr);
DESCRIÇÃO
A função atof() converte a porção inicial da string nptr para um valor double. O comportamento desta função é semelhante ao da
strtod(nptr, (char **)NULL);
exceto que nenhum erro é detectado.
VALOR RETORNADO
O valor convertido.
DE ACORDO COM
SVID 3, POSIX, BSD 4.3, ISO 9899
VER TAMBÉM
atoi(3), atol(3), strtod(3), strtol(3), strtoul(3)
TRADUZIDO POR LDP-BR em 21/08/2000.
Paulo César Mendes <drpc [AT] ism.br> (tradução) xxxxxxxxxxxxxxxxxxxxxxxxx <xxx [AT] xxxxxx.xx> (revisão)