C++ Programming/Code/Standard C Library/Functions/atof

< C++ Programming < Code < Standard C Library < Functions
atof
Syntax
#include <cstdlib>
double atof( const char *str );

The function atof() converts str into a double, then returns that value. str must start with a valid number, but can be terminated with any non-numerical character, other than "E" or "e". For example,

x = atof( "42.0is_the_answer" );

results in x being set to 42.0.

Related topics
atoi - atol - strtod
(Standard C I/O) sprintf
This article is issued from Wikibooks. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.