In Windows, it is "%I64d". In Linux and Solaris, it is "%lld".
If I want to write cross-platform printfs that print long long values. What is good way of doing so ?
long long ll;
printf(???, ll);
Thanks
|
There are a couple of approaches. You could write your code in C99-conforming fashion, and then supply system-specific hacks when the compiler-writers let you down. (Sadly, that's rather common in C99.)
If one of your target systems has neglected to implement The other approach is to pick something that's currently always implemented as 64-bits and is supported by printf, and then cast. Not perfect but it will often do:
|
|||||||
|
|
MSVC supports You could check the value of the It doesn't provide the C99 macros, so you will have to cast to This won't help if you're using older MSVC libraries with a non-MSVC compiler (I think mingw, at least, provides its own version of printf that supports |
|||||||
|
|
Try this...
|
||||
|
|
|
No on linux and solaris it is only incidentally that this is Edit: In your example you are using a different thing than a 64bit integer, namely a |
|||||
|
typedefto replace[u]int64_tif they are not available. – Jens Gustedt Jun 10 '11 at 6:34