I have some C++ code that prints a size_t:
size_t
size_t a; printf(\"%lu\", a);
I\'d like this to compile without warnings on both 32
On windows and the Visual Studio implementation of printf
%Iu
works for me. see msdn