The function strtod () in C
The double strtod function (const char * str, char ** endptr) in Standard C library converts a string pointed to by parameter str to a floating point number (type double).
The double strtod function (const char * str, char ** endptr) in Standard C library converts a string pointed to by parameter str to a floating point number (type double). If endptr is not NULL, a pointer to the character after the last character used in the conversion is stored in the location referenced by endptr.
Declaring the function strtod () in C
Below is the declaration for strtod () function in C:
double strtod ( const char * str , char ** endptr )
Parameters
str - This is the value to be converted into a string.
endptr - This is a reference to a allocated object of type char *, whose value is set by the function to the next character in str after the numeric value.
Returns the value
This function returns the floating point number that was converted as a double value. If not, the function returns 0.0.
For example
The following program C illustrates the usage of the strtod () function in C:
#include #include int main () { char str [ 30 ] = "21.32301 Hoc C tai QTM" ; char * ptr ; double ret ; ret = strtod ( str , & ptr ); printf ( "Phan gia tri (double) la: %lfn" , ret ); printf ( "Phan chuoi la: |%s|" , ptr ); return ( 0 ); }
Compile and run the above C program to see the results.
According to Tutorialspoint
Previous lesson: Atol () function in C
Next lesson: Function strtol () in C
You should read it
Maybe you are interested
NASA announced its plan to search for extraterrestrial life Discovered mysterious signals emanating from a star right next to the Solar System, possibly of aliens NASA reveals its latest snapshot of the Martian surface with a resolution of 1.8 billion pixels Found the second planet of Proxima Centauri, the star closest to the sun 7 most modern astronaut ships on the planet Is Proxima b our 'neighbor' planet?