Which of the given function converts the string pointed to, by the argument str to a floating-point number?
Which of the given function converts the string pointed to, by the argument str to a floating-point number? Correct Answer atof(const char *str)
The atof function converts the initial portion of the string pointed to by str to double representation. Except for the behavior on the error, it is equivalent to strtod (nptr, (char **)NULL).
মোঃ আরিফুল ইসলাম
Feb 20, 2025