vote up 1 vote down star

Hey all. I want to use print to print hex numbers in the form 0x###, but if the number is 0, I want to omit the 0x part. How can I do this?

Thanks!

flag

53% accept rate

5 Answers

vote up 15 vote down check
printf("%#x", number);

Note that this does exactly what you want. If the value of number is 0, it prints 0, otherwise it prints in hex. Example:

int x = 0;
int y = 548548;

printf("%#x %#x\n", x, y);

Results in:

0 0x85ec4
link|flag
It prints a upper-case X; the questioner requested a lower-case X. I care; I like 0xABCDEF0123 notation. But that's me being a fuss-pot. Maybe using 'x' in place of 'X' would placate the questioner. – Jonathan Leffler Feb 10 at 2:35
OK - fair enough. I said I was being a fuss-pot. I personally don't like the fact that to get the notation I prefer (lower case 0x, upper-case hex digits), I cannot use the standard printf() stuff; I have to write 0x%08lX or whatever; and that would not give 0 without the 0x part. – Jonathan Leffler Feb 10 at 4:34
On the other hand, I find it irritating that I don't get the "0x" prefix if the value is zero, even though I'm asking for the dang prefix in general. If I wanted zero to be a special case, I'd special case it. Then again, I don't find it to be a particularly big irritation. – Michael Burr Feb 10 at 7:20
vote up 3 vote down
 printf ((x == 0) ? "%03x" : "0x%03x", x);
link|flag
vote up 2 vote down
if (num == 0)
{
     printf("0");
}
else
{
     printf("%X", num);
}
link|flag
This always omits the "0x". – bk1e Feb 10 at 6:47
vote up 1 vote down

Why make it hard?

if number = 0
  printf without formatting
else
  printf with formatting
link|flag
vote up 0 vote down

Couldn't you just use an if statement to check if the number is 0 then figure out if you should print it as a 0x### or just 000 (or 0 if that was what you were looking for)

link|flag

Your Answer

Get an OpenID
or

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