Section courante

A propos

Section administrative du site

ATOF

Alpha à Virgule flottante
Symantec C++ Version 6.0+ stdlib.h

Syntaxe

double atof(const char *str);

Paramètres

Nom Description
str Ce paramètre permet d'indiquer la chaîne de caractères à convertir

Description

Cette fonction convertie une chaîne de caractères en une valeur «float».

Exemple

Voici quelques exemples typiques de l'utilisation de cette fonction :

  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. #include <math.h>
  4.      
  5. int main() {
  6.  printf("atof('12')=%f\n",atof("12"));
  7.  printf("atof('13.14')=%f\n",atof("13.14"));
  8.  printf("atof('-7')=%f\n",atof("-7"));
  9.  printf("atof('-7E-05')=%f\n",atof("-7E-05"));
  10.  return EXIT_SUCCESS;
  11. }

on obtiendra le résultat suivant :

atof('12')=12.000000
atof('13.14')=13.140000
atof('-7')=-7.000000
atof('-7E-05')=-0.000070


Dernière mise à jour : Dimanche, le 9 décembre 2018