ATOF(3) | Linux Programmer's Manual | ATOF(3) |
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¶
TRADUZIDO POR LDP-BR em 21/08/2000.¶
Paulo César Mendes <drpc@ism.com.br> (tradução) xxxxxxxxxxxxxxxxxxxxxxxxx <xxx@xxxxxx.xxx.xx> (revisão)
March 29, 1993 | GNU |