| www.delorie.com/djgpp/doc/libc-2.01/libc_51.html | search |
#include <stdlib.h> long double _atold(const char *string);
Convert as much of the string as possible to an equivalent long double precision real number.
This function is almost like _strtold(string, NULL) (see section _strtold).
The equivalent value, or zero if the string does not represent a number.
main(int argc, char **argv)
{
long double d = _atold(argv[1]);
...
Go to the first, previous, next, last section, table of contents.
| prev next webmaster | delorie software privacy |
| Copyright © 1997 | Updated Apr 1997 |