Convert a string to a unsigned long long.
string str = "0x1232"
How do I convert to a unsigned long long.
This is what i've tried.
unsigned long long ull;
ull = stoull(str, NULL, 0);
Error:
error: identifier "stoull" is undefined
ull = stoull(str, NULL, 0);
Can you give me some pointers?