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"
feedback
|
|
Here is a quick hack to demonstrate techniques to do what you want.
| |||||||||||||||||||||
feedback
|
|
Hacky but works for me:
...
For multi-byte types
You need all the extra "s unfortunately. This approach has the efficiency risks of macros (don't pass a function as the argument to BYTETOBINARY) but avoids the memory issues and multiple invocations of strcat in some of the other proposals here. | |||||
feedback
|
|
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. | ||||
|
feedback
|
|
Here's a version of the function that does not suffer from reentrancy issues or limits on the size/type of the argument:
Note that this code would work just as well for any base between 2 and 10 if you just replace the 2's by the desired base. Usage is:
Where | |||
|
feedback
|
|
Some runtimes support "%b" although that is not a standard. Also see here for an interesting discussion: http://bytes.com/forum/thread591027.html HTH | |||||
feedback
|
|
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.
| |||||||
feedback
|
| |||||
feedback
|
|
Print Binary for Any Datatype
golfed
test
| ||||
|
feedback
|
|
I optimized the top solution for size and C++-ness, and got to this solution:
| |||
|
feedback
|
|
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. | |||
|
feedback
|
|
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 | |||
|
feedback
|
|
| ||||
|
feedback
|
|
I liked the code by paniq, the static buffer is a good idea. However it fails if you want multiple binary formats in a single printf() because it always returns the same pointer and overwrites the array. Here's a C style drop-in that rotates pointer on a split buffer.
| ||||
|
feedback
|
|
Next will show to you memory layout:
| |||
|
feedback
|
|
None of the above is exactly what I was looking for, so I wrote one. super simple to use %B in the printf!
| |||||||
feedback
|
| |||
|
feedback
|
|
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. | |||
|
feedback
|
|
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. | |||
|
feedback
|
|
There isn't a format predefined for that. You need to transform it yourself to a string and then print the string. | |||
|
feedback
|
|
A quick Google search produced this page with some information that may be useful: | |||
|
feedback
|
|
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/ . | |||
|
feedback
|
should work - untested. | ||||
|
feedback
|
The calling function "owns" the string...:
Depending on your CPU, most of the operations in PrintBinary render to one or very few machine instructions. | |||
feedback
|
| ||||
feedback
|
|
There's no standard printf format specifier to accomplish "binary" output. Here's the alternative I devised when I needed it. Mine works for any base from 2 to 36. It fans the digits out into the calling frames of recursive invocations, until it reaches a digit smaller than the base. Then it "traverses" backwards, filling the buffer s forwards, and returning. The return value is the size used or -1 if the buffer isn't large enough to hold the string.
One big caveat: This function was designed for use with "Pascal"-style strings which carry their length around. Consequently | ||||
|
feedback
|
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.