ATOF

Section: Manuel du programmeur Linux (3)
Updated: 22 Octobre 1996
Index Retour au Menu Principal

 

NOM

atof - Conversion d'une chaîne en réel (double).  

SYNOPSIS

#include <stdlib.h>

double atof (const char *nptr);
 

DESCRIPTION

La fonction atof() convertit le début de la chaîne pointée par nptr en un réel de type double. Le résultat est identique à un appel

strtod(nptr, (char **)NULL);

à la différence que atof() ne détecte pas d'erreur.  

VALEUR RENVOYÉE

Le résultat de la conversion.  

CONFORMITÉ

SVID 3, POSIX, BSD 4.3, ISO 9899  

VOIR AUSSI

atoi(3), atol(3), strtod(3), strtol(3), strtoul(3)

 

TRADUCTION

Christophe Blaess, 1997.



 

Index

NOM
SYNOPSIS
DESCRIPTION
VALEUR RENVOYÉE
CONFORMITÉ
VOIR AUSSI
TRADUCTION


Time: 22:29:59 GMT, December 19, 2004