May 2003
Intermediate to advanced
808 pages
32h 24m
English
atol function — Converts a string to a long integer
long atol(const char* str)The atol function reads an
integer from the character array str, and returns the value of the number.
The conversion is similar to calling strtol(str, NULL, 10).
Read now
Unlock full access