Display the binary representation of a number in C? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T12:05:01Z http://stackoverflow.com/feeds/question/699968 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/699968/display-the-binary-representation-of-a-number-in-c 0 Display the binary representation of a number in C? Paul Wicks 2009-03-31T04:18:04Z 2009-04-01T07:31:24Z <p>Still learning C and I was wondering: </p> <p>Given a number, is it possible to do something like the following?</p> <pre><code>char a = 5; printf("binary representation of a = %b",a); &gt; 101 </code></pre> <p>Or would i have to write my own method to do the transformation to binary?</p> http://stackoverflow.com/questions/699968/display-the-binary-representation-of-a-number-in-c/699977#699977 2 Answer by sharptooth for Display the binary representation of a number in C? sharptooth 2009-03-31T04:20:34Z 2009-03-31T04:20:34Z <p>You have to write your own transformation. Only decimal, hex and octal numbers are supported with format specifiers.</p> http://stackoverflow.com/questions/699968/display-the-binary-representation-of-a-number-in-c/699978#699978 10 Answer by dirkgently for Display the binary representation of a number in C? dirkgently 2009-03-31T04:21:10Z 2009-03-31T05:48:06Z <p>There is no direct way (i.e. using <code>printf</code> or another standard library function) to print it. You will have to write your own function.</p> <pre><code>/* This code has an obvious bug and another non-obvious one :) */ void printbits(unsigned char v) { for (; v; v &gt;&gt;= 1) putchar('0' + (v &amp; 1)); } </code></pre> http://stackoverflow.com/questions/699968/display-the-binary-representation-of-a-number-in-c/700017#700017 0 Answer by John T for Display the binary representation of a number in C? John T 2009-03-31T04:43:55Z 2009-03-31T04:43:55Z <p>There is no direct format specifier for this in the C language. Although I wrote this quick python snippet to help you understand the process step by step to roll your own.</p> <pre><code>#!/usr/bin/python dec = input("Enter a decimal number to convert: ") base = 2 solution = "" while dec &gt;= base: solution = str(dec%base) + solution dec = dec/base if dec &gt; 0: solution = str(dec) + solution print solution </code></pre> <p><strong>Explained:</strong></p> <p><strong>dec = input("Enter a decimal number to convert: ")</strong> - prompt the user for numerical input (there are multiple ways to do this in C via scanf for example)</p> <p><strong>base = 2</strong> - specify our base is 2 (binary)</p> <p><strong>solution = ""</strong> - create an empty string in which we will concatenate our solution</p> <p><strong>while dec >= base:</strong> - while our number is bigger than the base entered</p> <p><strong>solution = str(dec%base) + solution</strong> - get the modulus of the number to the base, and add it to the beginning of our string (we must add numbers right to left using division and remainder method). the str() function converts the result of the operation to a string. You cannot concatenate integers with strings in python without a type conversion.</p> <p><strong>dec = dec/base</strong> - divide the decimal number by the base in preperation to take the next modulo</p> <p><strong>if dec > 0:</strong> <strong>solution = str(dec) + solution</strong> - if anything is left over, add it to the beginning (this will be 1, if anything)</p> <p><strong>print solution</strong> - print the final number</p> http://stackoverflow.com/questions/699968/display-the-binary-representation-of-a-number-in-c/700018#700018 0 Answer by paxdiablo for Display the binary representation of a number in C? paxdiablo 2009-03-31T04:44:14Z 2009-04-01T04:40:47Z <p>Yes (write your own), something like the following complete function.</p> <pre><code>#include &lt;stdio.h&gt; /* only needed for the printf() in main(). */ #include &lt;string.h&gt; /* Create a string of binary digits based on the input value. Input: val: value to convert. buff: buffer to write to must be &gt;= sz+1 chars. sz: size of buffer. Returns address of string or NULL if not enough space provided. */ static char *binrep (unsigned int val, char *buff, int sz) { char *pbuff = buff; /* Must be able to store one character at least. */ if (sz &lt; 1) return NULL; /* Special case for zero to ensure some output. */ if (val == 0) { *pbuff++ = '0'; *pbuff = '\0'; return buff; } /* Work from the end of the buffer back. */ pbuff += sz; *pbuff-- = '\0'; /* For each bit (going backwards) store character. */ while (val != 0) { if (sz-- == 0) return NULL; *pbuff-- = ((val &amp; 1) == 1) ? '1' : '0'; /* Get next bit. */ val &gt;&gt;= 1; } return pbuff+1; } </code></pre> <p>Add this main to the end of it to see it in operation:</p> <pre><code>#define SZ 32 int main(int argc, char *argv[]) { int i; int n; char buff[SZ+1]; /* Process all arguments, outputting their binary. */ for (i = 1; i &lt; argc; i++) { n = atoi (argv[i]); printf("[%3d] %9d -&gt; %s (from '%s')\n", i, n, binrep(n,buff,SZ), argv[i]); } return 0; } </code></pre> <p>Run it with <code>"progname 0 7 12 52 123"</code> to get:</p> <pre><code>[ 1] 0 -&gt; 0 (from '0') [ 2] 7 -&gt; 111 (from '7') [ 3] 12 -&gt; 1100 (from '12') [ 4] 52 -&gt; 110100 (from '52') [ 5] 123 -&gt; 1111011 (from '123') </code></pre> http://stackoverflow.com/questions/699968/display-the-binary-representation-of-a-number-in-c/700039#700039 3 Answer by qrdl for Display the binary representation of a number in C? qrdl 2009-03-31T04:52:16Z 2009-03-31T04:52:16Z <p>Use a lookup table, like:</p> <pre><code>char *table[16] = {"0000", "0001", .... "1111"}; </code></pre> <p>then print each nibble like this</p> <pre><code>printf("%s%s", table[a / 0xF], table[a % 0xF]); </code></pre> <p>Surely you can use just one table, but it will be marginally faster and too big.</p> http://stackoverflow.com/questions/699968/display-the-binary-representation-of-a-number-in-c/700184#700184 3 Answer by Chris Lutz for Display the binary representation of a number in C? Chris Lutz 2009-03-31T06:01:37Z 2009-03-31T06:01:37Z <p>Based on <a href="http://stackoverflow.com/questions/699968/display-the-binary-representation-of-a-number-in-c/699978#699978">dirkgently's answer</a>, but fixing his two bugs, and always printing a fixed number of digits:</p> <pre><code>void printbits(unsigned char v) { int i; // for C89 compatability for(i = 7; i &gt;= 0; i--) putchar('0' + ((v &gt;&gt; i) &amp; 1)); } </code></pre> http://stackoverflow.com/questions/699968/display-the-binary-representation-of-a-number-in-c/701915#701915 0 Answer by Indeera for Display the binary representation of a number in C? Indeera 2009-03-31T16:33:26Z 2009-03-31T16:33:26Z <p>Have a look here</p> <p><a href="http://www.java2s.com/Tutorial/Cpp/0040%5F%5FData-Types/Printinganunsignedintegerinbits.htm" rel="nofollow">Printing an unsigned integer in bits</a></p> http://stackoverflow.com/questions/699968/display-the-binary-representation-of-a-number-in-c/704398#704398 0 Answer by mrwes for Display the binary representation of a number in C? mrwes 2009-04-01T07:24:34Z 2009-04-01T07:31:24Z <p>This code should handle your needs up to 64 bits.</p> <pre><code> char* pBinFill(long int x,char *so, char fillChar); // version with fill char* pBin(long int x, char *so); // version without fill &#35;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&gt;&gt;=1; // shift right 1 bit } while( x &gt 0); i++; // point to last valid character sprintf(so,"%s",s+i); // stick it in the temp string string return so; } </code></pre> <pre><code> 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&gt;&gt;=1; // shift right 1 bit } while( x &gt; 0); while(i&gt;=0) s[i--]=fillChar; // fill with fillChar sprintf(so,"%s",s); return so; } </code></pre> <pre><code> 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 &lt; 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 </code></pre>