I have a variable of type size_t, and I want to print it using printf(). What format specifier do I use to print it portably?
size_t
printf()
In 32-bit ma
printf("size = %zu\n", sizeof(thing) );