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

strtoul

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

The function strtoul() behaves exactly like strtol(), except that it returns an unsigned long rather than a mere long.

Related topics
strtol
Category:Book:C++ Programming#Code/Standard%20C%20Library/Functions/strtoul%20
Category:Book:C++ Programming