table of contents
other sections
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 dastrtod(nptr, (char **)NULL);
exceto que nenhum erro é detectado.
VALOR RETORNADO¶
O valor convertido.DE ACORDO COM¶
SVID 3, POSIX, BSD 4.3, ISO 9899VER 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@ism.com.br> (tradução) xxxxxxxxxxxxxxxxxxxxxxxxx <xxx@xxxxxx.xxx.xx> (revisão)March 29, 1993 | GNU |