3
votes
5answers
459 views
Clean code to printf size_t in C++ (or: Nearest equivalent of C99’s %z in C++)
I have some C++ code that prints a size_t:
size_t a;
printf("%lu", a);
I'd like this to compile without warnings on both 32- and 64-bit architectures.
If this were C99, I could use printf("%z", …
5
votes
8answers
1k views
Cross platform format string for variables of type size_t?
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. …
