30

I have some code that prints the amount of memory used by the program. The line is similar to this:

printf("The about of RAM used is %u", anIntVariable*sizeof(double) );

where anIntVariable is an int variable for the number of elements of the double array. Anyhow, on 32-bit systems I never had any problems but on 64-bit systems, I get a compiler warning about using "%u" for a unsigned long integer. Using "%lu" as the format code fixes the problem on 64-bit but causes the compiler to complain on 32-bit because the type is back to unsigned int. I've found that, indeed, sizeof(double) returns a different value on 32 vs 64 bit systems. I've found some webpage guides to convert code from 32 bit to 64 bit But I'd rather have code that works on both instead of just converting back and forth.

How do I write this line in a platform independent way? I know many ways I could do it using preprocessor directives but that seems like a hack. Surely there's an elegant way that I'm not realizing.

2

3 Answers 3

20

Portable printf identifiers are provided in the include file inttypes.h or here.

This include file has many portable identifiers for your specific runtime. For your example, you want PRIuPTR, which means "PRintf Identifier unsigned with size of up to a pointer's size".

Your example will then be:

printf("The amount of RAM used is %" PRIuPTR, anIntVariable*sizeof(double) );

Results on 64bit Linux with GCC 4.3 (int anIntVariable = 1):

$ gcc test.c -m32 -o test && ./test
The amount of RAM used is 8
$ gcc test.c -o test && ./test
The amount of RAM used is 8

For completeness sake, there are identifiers for scanf too, whose prefixes are SCN.

3
  • This idea seems to answer my question. I've been programming in C for a number of years but my problems are normally practical, and things like portability rarely come up. I'm somewhat surprised at how architecture plays a role in such a simple situation. Thanks, Lira and Thomas too, who had a decent work-around solution, but this one seems to be the full answer.
    – SO Stinks
    Sep 16, 2009 at 0:40
  • 2
    This is still not portable; it assumes sizeof(size_t) == sizeof(uintptr_t), which is not guaranteed. PRIuPTR does not work "up to a pointer's size"; it works only with integer types that are exactly a uintptr_t wide.
    – Fred Foo
    Jul 10, 2012 at 20:01
  • 1
    Note that you must #define __STDC_FORMAT_MACROS before including <inttypes.h> or else none of the PRIuPTR and similar macros will be available. (as per ISO C99 standard). If it already works it's possible this is defined in your makefile
    – benathon
    Jan 29, 2014 at 1:14
14

The return value of sizeof is a size_t. If you're using a C99 compliant compiler it looks like you can use %zd%zu for this.

D'oh: %zu (unsigned) of course. Thanks, ony.

2
  • 1
    "%zu" for size_t and "%zd" for ssize_t, I guess ;)
    – ony
    May 26, 2013 at 7:31
  • @ony yeah, I think it's %zu here (edited my answer). It's a little bit confusing because the code is multiplying a signed int with an unsigned size_t, the result of which should be an unsigned integer type.
    – wds
    May 30, 2013 at 7:41
7

First of all, you should match the "%" specifier with the actual data type you want to print. sizeof returns the data type size_t, and just as you shouldn't try to print a float using a "%d" specifier, you shouldn't try to print a size_t with "%u" or "%d" or anything that doesn't really mean size_t.

The other replies have given some good ways to handle this with newer compilers ("%z" and PRIu32), but the way we used to do this was simply to cast the size_t to unsigned long, and then print it using "%lu":

printf("The amount of RAM used is %lu", (unsigned long)(anIntVariable*sizeof(double)) );

This will not work on systems where size_t is wider than a long, but I don't know of any such systems, and I'm not even sure if the standard allows it.

2
  • Thomas. You're answer seems to work the best (under my current level of understanding. What caused the problem is that I was assuming that doing the (size_t) would inherit the type of anIntVariable but it doesn't. I'll keep the question open for a few more days and then mark this as the accepted answer. I still have yet to find the type promotion behavior of expressions containing (size_t), which is related to my question.
    – SO Stinks
    Sep 14, 2009 at 23:31
  • 3
    Note that win64 is a system where size_t is wider than a long. Feb 28, 2010 at 22:26

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

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