strtod() function in c
What is strtod() in c? strtod() converts the given string to floating point value. It sets a pointer to point to the first character of the string otherwise it sets the pointer to NULL. It is defined under stdlib.h header file. Prototype Return value strtod() function returns converted floating point number as a double value … Read more