I can print with printf as a hex or octal number. Is there a format tag to print as binary, or arbitrary base?
I am running gcc.
printf("%d %x %o\n", 10, 10, 10); //prints "10 A 12\n"
print("%b\n", 10); // prints "%b\n"
|
2
|
|
|
|
|
|
There isn't a binary conversion specifier in glibc normally. It is possible to add custom conversion types to the printf() family of functions in glibc. See register_printf_function for details. You could add a custom %b conversion for your own use, if it simplifies the application code to have it available. Here is an example of how to implement a custom printf formats in glibc. |
|||
|
|
|
|
Some runtimes support "%b" although that is not a standard. Also see here for an interesting discussion: http://bytes.com/forum/thread591027.html HTH |
|||
|
|
|
Here is a quick hack to demonstrate techniques to do what you want.
|
||||||
|
|
|
You can not do this, as far as I know, using printf. You could, obviously, write a helper method to accomplish this, but that doesn't sound like the direction you're wanting to go. |
||
|
|
|
|
There is no formating function in the C standard library to output binary like that. All the format operation the printf family supports are towards human readable text. |
||
|
|
|
|
There isn't a format predefined for that. You need to transform it yourself to a string and then print the string. |
||
|
|
|
|
A quick Google search produced this page with some information that may be useful: |
||
|
|
|
|
No standard and portable way. Some implementations provide itoa(), but it's not going to be in most, and it has a somewhat crummy interface. But the code is behind the link and should let you implement your own formatter pretty easily. |
||
|
|
|
|
Maybe a bit OT, but if you need this only for debuging to understand or retrace some binary operations you are doing, you might take a look on wcalc (a simple console calculator). With the -b options you get binary output. e.g. $ wcalc -b "(256 | 3) & 0xff" = 0b11 |
||
|
|
|
|
{ static char b[8] = {0};
} |
||
|
|
|
|
Even for the runtime libraries that DO support %b it seems it's only for integer values. If you want to print floating-point values in binary, I wrote some code you can find at http://www.exploringbinary.com/converting-floating-point-numbers-to-binary-strings-in-c/ . |
||
|
|
|
|
This code should handle your needs up to 64 bits. I created 2 functions pBin & pBinFill. Both do the same thing, but pBinFill fills in the leading spaces with the fillChar. The test function generates some test data, then prints it out using the function.
|
||
|
|