vote up 2 vote down star
2

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"
flag

12 Answers

vote up 6 vote down

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.

link|flag
vote up 3 vote down

Some runtimes support "%b" although that is not a standard.

Also see here for an interesting discussion:

http://bytes.com/forum/thread591027.html

HTH

link|flag
This is actually a property of the C runtime library, not the compiler. – cjm Sep 21 '08 at 20:18
vote up 3 vote down

Here is a quick hack to demonstrate techniques to do what you want.

#include <stdio.h>      // printf
#include <string.h>     // strcat
#include <stdlib.h>     // strtol

const char *byte_to_binary
(
    int x
)
{
    static char b[9] = {0};

    int z;
    for (z = 256; z > 0; z >>= 1)
    {
        strcat(b, ((x & z) == z) ? "1" : "0");
    }

    return b;
}

int main(void)
{
    {
        // binary string to int

        char *tmp;
        char *b = "0101";

        printf("%d\n", strtol(b, &tmp, 2));
    }

    {
        // byte to binary string

        printf("%s\n", byte_to_binary(5));
    }

    return 0;
}
link|flag
good answer.I like these kind of straight forward answers. thank u – Manoj Doubts Jan 22 at 10:02
You are very welcome. Thanks for the vote up. – EvilTeach Jan 27 at 21:43
This is certainly less "weird" than custom writing an escape overload for printf. It's simple to understand for a developer new to the code, as well. – Furious Coder Apr 16 at 23:23
vote up 0 vote down

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.

link|flag
vote up 0 vote down

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.

link|flag
vote up 0 vote down

There isn't a format predefined for that. You need to transform it yourself to a string and then print the string.

link|flag
vote up 0 vote down

A quick Google search produced this page with some information that may be useful:

http://forums.macrumors.com/archive/index.php/t-165959.html

link|flag
vote up 0 vote down

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.

link|flag
vote up 0 vote down

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
link|flag
vote up 0 vote down
const char* byte_to_binary( int x )

{ static char b[8] = {0};

for (int z=128,y=0; z>0; z>>=1,y++)
{
	b[y] = ( ((x & z) == z) ? 49 : 48);
}

return b;

}

link|flag
vote up 0 vote down

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/ .

link|flag
vote up 0 vote down

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.



char* pBinFill(long int x,char *so, char fillChar); // version with fill
char* pBin(long int x, char *so);                    // version without fill
#define width 64

char* pBin(long int x,char *so)
{
 char s[width+1];
 int    i=width;
 s[i--]=0x00;   // terminate string
 do
 { // fill in array from right to left
  s[i--]=(x & 1) ? '1':'0';  // determine bit
  x>>=1;  // shift right 1 bit
 } while( x > 0);
 i++;   // point to last valid character
 sprintf(so,"%s",s+i); // stick it in the temp string string
 return so;
}

char* pBinFill(long int x,char *so, char fillChar)
{ // fill in array from right to left
 char s[width+1];
 int    i=width;
 s[i--]=0x00;   // terminate string
 do
 {
  s[i--]=(x & 1) ? '1':'0';
  x>>=1;  // shift right 1 bit
 } while( x > 0);
 while(i>=0) s[i--]=fillChar;    // fill with fillChar 
 sprintf(so,"%s",s);
 return so;
}

void test()
{
 char so[width+1]; // working buffer for pBin
 long int   val=1;
 do
 {
   printf("%ld =\t\t%#lx =\t\t0b%s\n",val,val,pBinFill(val,so,'0'));
   val*=11; // generate test data
 } while (val < 100000000);
}

Output:
00000001 =  0x000001 =  0b00000000000000000000000000000001
00000011 =  0x00000b =  0b00000000000000000000000000001011
00000121 =  0x000079 =  0b00000000000000000000000001111001
00001331 =  0x000533 =  0b00000000000000000000010100110011
00014641 =  0x003931 =  0b00000000000000000011100100110001
00161051 =  0x02751b =  0b00000000000000100111010100011011
01771561 =  0x1b0829 =  0b00000000000110110000100000101001
19487171 = 0x12959c3 =  0b00000001001010010101100111000011
link|flag

Your Answer

Get an OpenID
or

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