how to convert ascii to unsigned int

c++

Solution

`std::strtoul()` is the one. And then again there are the old ones like `atoi()`.

Problem

Is there a method that converts string to unsigned int? _ultoa exists but couldn't find the vise verse version...

Original source

Related problems