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!
|
|
|
|
|
|
|
Note that this does exactly what you want. If the value of number is 0, it prints 0, otherwise it prints in hex. Example:
Results in:
|
||||||
|
|
|
|
||
|
|
|
|
|
||
|
|
|
Why make it hard? if number = 0 printf without formatting else printf with formatting |
||
|
|
|
|
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) |
||
|
|