How can I convert a char* string to long long (64-bit) integer?
I use MSVC and GCC compilers and my platforms are Windows, Linux and MAC OS.
Thanks.
|
How can I convert a char* string to long long (64-bit) integer? I use MSVC and GCC compilers and my platforms are Windows, Linux and MAC OS. Thanks.
| |||
|
feedback
|
|
Use | |||||||||||||
feedback
|
|
For C++ with a compiler that supports
| |||
|
feedback
|
|
| |||
|
feedback
|
boost::lexical_cast<long long>(str)– avakar Sep 12 '11 at 13:15long longexists on that platform? (The C++ standard doesn't define that type) :) – Billy ONeal Sep 12 '11 at 13:18