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.

link|improve this question

80% accept rate
1  
boost::lexical_cast<long long>(str) – avakar Sep 12 '11 at 13:15
1  
Of course, this assuming long long exists on that platform? (The C++ standard doesn't define that type) :) – Billy ONeal Sep 12 '11 at 13:18
But I don't want to use boost library. Is there a better way? – Amir Saniyan Sep 12 '11 at 13:19
@Billy: long long already supported by GCC and MSVC. – Amir Saniyan Sep 12 '11 at 13:19
@Amir: That does not mean it is standard. – Billy ONeal Sep 12 '11 at 13:25
feedback

4 Answers

up vote 1 down vote accepted

Use strtoull for unsigned long long or strtoll for signed long long. On any Unix (Linux, Mac OS X), type man strtoull or man strtoll to get its description. Since both are part of the C99 standard they should be available on any system that supports C. The Linux man pages also have examples on how to use them.

link|improve this answer
2  
1. The question is tagged C++. 2. Not there on Windows. – Billy ONeal Sep 12 '11 at 13:18
Is stoull the equivalent to strtoull on Windows? – Simon C Sep 12 '11 at 13:21
1. Since he wants to convert a C string, I was assuming a C function would be just fine. 2. That is a problem of course... someone should file a bug report with MS, it's a C99 function. – DarkDust Sep 12 '11 at 13:24
@Simon C: Similar, but not the same. – DarkDust Sep 12 '11 at 13:25
MS claims that strtoll is not a C++ function and provides their own extension called _strtoi64. – Bo Persson Sep 12 '11 at 13:32
show 2 more comments
feedback

For C++ with a compiler that supports long long int, I would use a std::istringstream object. For instance:

char* number_string;
//...code that initializes number_string

std::istringstream input_stream(number_string);
long long int i64_bit_type;
input_stream >> i64_bit_type;
link|improve this answer
feedback
long long int i;

if(sscanf(string, "%lld", &i) == 1) { ... }
link|improve this answer
feedback

boost::lexical_cast is probably the simplest (in code). See http://www.boost.org/doc/libs/1_47_0/libs/conversion/lexical_cast.htm for more info. Alternately use a stringstream to parse out the numeric value.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.