Quote:
|
Originally Posted by CJO
If one wanted to output actual data in (say) hex, how would one actually go about it then?
|
I don't remember off hand if this is available in the standard IFI printf, but is the %x (or %X) option what you're looking for?
Code:
printf("%d => %x => %X", 10,10,10);
Output: 10 => a => A