vote up 3 vote down star

In C, I'd like to use printf to display pointers, and so that they line up properly, I'd like to pad them with 0s.

My guess was that the proper way to do this was:

printf("%016p", ptr);

This works, but this gcc complains with the following message:

warning: '0' flag used with ā€˜%p’ gnu_printf format

I've googled a bit for it, and the following thread is on the same topic, but doesn't really give a solution.

http://gcc.gnu.org/ml/gcc-bugs/2003-05/msg00484.html

Reading it, it seems that the reason why gcc complains is that the syntax I suggested is not defined in C99. But I can't seem to find any other way to do the same thing in a standard approved way.

So here is the double question:

  • Is my understanding correct that this behavior is not defined by the C99 standard?
  • If so, is there a standard approved, portable way of doing this?
flag

6 Answers

vote up 6 vote down check

#include <inttypes.h>

#include <stdint.h>

printf("%016"PRIxPTR"\n", (uintptr_t)ptr);

but it won't print the pointer in the implementation defined way (says DEAD:BEAF for 8086 segmented mode).

link|flag
Interesting. This is the first time I see this PRIxPTR notation. Is this standard, or gcc specific? If standard, which standard? C89 or C99? – Florian Aug 10 at 14:50
Standard in C99. The macro PRIxPTR is defined in <inttypes.h>. The uintptr_t type is defined in <stdint.h>. – AProgrammer Aug 10 at 15:00
Let me make sure I got this straight. The reason what I tried to do is not portable is because not all platforms display pointers as 0x..... Because of this padding with 0s is not portable. On the other hand, printf("%016"PRIxPTR", (uintptr_t)ptr); will on all platforms print my pointer with the right lenght, formated as a 0x... number, padded with 0s, without unsafe casting. – Florian Aug 10 at 15:16
Right. But you depend on C99 -- Microsoft compilers and runtimes support it badly from what I read here and elsewhere (I'm a Unix guy), and some gcc packaging for Windows are reusing the Microsoft run-time. BTW, you won't get the 0x prefix (put it yourself or use a # flag, but note that the flag won't put it for pointers which are converted to 0 -- usually NULL pointers). – AProgrammer Aug 10 at 15:26
Makes sense. And as Of C89, there is no portable way of doing this? – Florian Aug 10 at 15:30
show 3 more comments
vote up 3 vote down

Use:

#include <inttypes.h>

printf("0x%016" PRIXPTR "\n", (uintptr_t) pointer);

Or use another variant of the macros from that header.

Also note that some implementations of printf() print a '0x' in front of the pointer; others do not (and both are correct according to the C standard).

link|flag
Note that formally you need to cast to uintptr_t. – AProgrammer Aug 10 at 15:55
Yup - thanks for the reminder. Fixed in the answer. – Jonathan Leffler Aug 10 at 15:57
vote up 0 vote down

It's easy to solve if you cast the pointer to a long type. The problem is this won't work on all platforms as it assumes a pointer can fit inside a long, and that a pointer can be displayed in 16 characters (64 bits). This is however true on most platforms.

so it would become:

printf("%016lx", (unsigned long) ptr);
link|flag
I do not have the right machine / OS at hand to confirm, but I think that under 64-bit windows, pointers are 64bit while long are 32 bits, breaking your assumption. So, unless I am mistaken, what you suggest would break on at least one major platform. – Florian Aug 10 at 14:33
If portability to windows is important, relying on C99 features is probably not the thing to do. – AProgrammer Aug 10 at 14:39
typically on a 64 bit platform, ints are 32 bits and longs are 64 bits. If this is a problem on your platform use a long long. – Tony Lambert Aug 11 at 8:35
vote up 0 vote down

As your link suggests already, the behaviour is undefined. I don't think there's a portable way of doing this as %p itself depends on the platform you're working on. You could of course just cast the pointer to an int and display it in hex:

printf("0x%016lx", (unsigned long)ptr);
link|flag
vote up 0 vote down

Maybe this will be interesting (from a 32-bit windows machine, using mingw):

rjeq@RJEQXPD /u
$ cat test.c
#include <stdio.h>

int main()
{
    char c;

    printf("p: %016p\n", &c);
    printf("x: %016llx\n", (unsigned long long) (unsigned long) &c);

    return 0;
}

rjeq@RJEQXPD /u
$ gcc -Wall -o test test.c
test.c: In function `main':
test.c:7: warning: `0' flag used with `%p' printf format

rjeq@RJEQXPD /u
$ ./test.exe
p:         0022FF77
x: 000000000022ff77

As you can see, the %p version pads with zeros to the size of a pointer, and then spaces to the specified size, whereas using %x and casts (the casts and format specifier are highly unportable) uses only zeros.

link|flag
Interesting. It confirms that %016p" isn't portable, since on my machine (64-bit linux) it pads purely with 0s, not with spaces. – Florian Aug 10 at 14:39
vote up -1 vote down

I usually use %x to display pointers. I suppose that isn't portable to 64-bit systems, but it works fine for 32-bitters.

I'll be interested in seeing what answers there are for portable solutions, since pointer representation isn't exactly portable.

link|flag
My main system is actually a 64-bit one, so %x doesn't really cut it. Avoiding this kind of problem is why I want to use %p. – Florian Aug 10 at 14:18

Your Answer

Get an OpenID
or

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