0

Do you have any idea on how to use stoull on Visual Studio 2008? I want to convert string to unsigned long long. Thanks!

1 Answers1

0

For stoll/stoull replacement please look here: http://msdn.microsoft.com/en-us/library/czcad93k%28v=vs.90%29.aspx

you can make use of : _atoi64, _atoi64_l, _wtoi64, _wtoi64_l which converts a string to a 64-bit integer.

hope this helps!! Happy coding, -codevik

codevik
  • 1
  • 1