vote up 2 vote down
star

On a cross platform c/c++ project (Win32, Linux, OSX), I need to use the *printf functions to print some variables of type size_t. In some environments size_t's are 8 bytes and on others they are 4. On glibc I have %zd, and on Win32 I can use %Id. Is there an elegant way to handle this?

flag
add comment

6 Answers

vote up 8 vote down

The PRIuPTR macro (from <inttypes.h>) defines a decimal format for uintptr_t, which should always be large enough that you can cast a size_t to it without truncating, e.g.

fprintf(stream, "Your size_t var has value %" PRIuPTR ".", (uintptr_t) your_var);
link|flag
finnw, you better change your PRIuPTR into PRIuPTR and prefix your "fprintf" line with 4 spaces, so that they become formatted as code and there won't be a confusion between PRIuPTR and PRluPTR (as seen here). – ΤΖΩΤΖΙΟΥ Oct 6 at 15:37
@ΤΖΩΤΖΙΟY, I added the prefix, but what do the backticks around PRIuPTR do? I can't see any difference. – finnw Oct 6 at 16:49
Backticks let you put code (or other stuff you don't want formatted by markdown) inline with text. The markdown formatter often gets confused by things like underscores in identifiers. Backticking inline code helps with this. – Michael Burr Oct 6 at 17:15
Backticks don't seem to work in comments. Don't know why. Also no preview in comments. – Rhythmic Fistman Oct 10 at 21:01
Backticks also allow the reader to see the difference between Int and lnt :) – ΤΖΩΤΖΙΟΥ Oct 15 at 16:47
add comment
vote up 1 vote down

I don't know of any satisfying solution, but you might consider a specialized function to format size_t items to a string, and print the string.

(Alternatively, if you can get away with it, boost::format handles this kind of thing with ease.)

link|flag
add comment
vote up 1 vote down

The only thing I can think of, is the typical:

#ifdef __WIN32__ // or whatever
#define SSIZET_FMT "%ld"
#else
#define SSIZET_FMT "%zd"
#endif

and then taking advantage of constant folding:

fprintf(stream, "Your size_t var has value " SSIZET_FMT ".", your_var);
link|flag
Heh -- I was hoping it wouldn't come to this. – twk Oct 6 at 15:09
Hopefully somebody else will provide something better… – ΤΖΩΤΖΙΟΥ Oct 6 at 15:14
add comment
vote up 1 vote down

Dan Saks wrote an article in Embedded Systems Design which covered this matter. According to Dan, %zu is the standard way, but few compilers supported this. As an alternative, he recommended using %lu together with an explicit cast of the argument to unsigned long:

size_t n;
...
printf("%lu", (unsigned long)n);
link|flag
That's not so great on systems that use the LLP64 programming model, such as 64-bit Windows. – bk1e Oct 7 at 5:08
%zu is a C99 invention. Those compilers are indeed rare. C++ doesn't have the problem to start with. – MSalters Oct 7 at 12:02
%zu has nothing to do with the compiler and everything to do with the standard libraries... – plinth Nov 3 at 13:28
add comment
vote up 0 vote down

Can't you just test "sizeof(size_t)" to pick your format string?

link|flag
add comment
vote up 0 vote down

Use boost::format. It's typesafe, so it'll print size_t correctly with %d, also you don't need to remember to put c_str() on std::strings when using it, and even if you pass a number to %s or vice versa, it'll work.

link|flag
add comment

Your Answer

Get an OpenID
or

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