C++ Programming/Code/Standard C Library/Functions/strtol

From Wikibooks, open books for an open world
Jump to navigation Jump to search

strtol[edit | edit source]

Syntax
#include <cstdlib>
long strtol( const char *start, char **end, int base );

The strtol() function returns whatever it encounters first in start as a long, doing the conversion to base if necessary. end is set to point to whatever is left in start after the long. If the result can not be represented by a long, then strtol() returns either LONG_MAX or LONG_MIN. Zero is returned upon error.

Related topics
atol - strtoul