Still learning C and I was wondering:
Given a number, is it possible to do something like the following?
char a = 5;
printf("binary representation of a = %b",a);
> 101
Or would i have to write my own method to do the transformation to binary?
|
|
Still learning C and I was wondering: Given a number, is it possible to do something like the following?
Or would i have to write my own method to do the transformation to binary?
|
||
|
|
|
|
Yes (write your own), something like the following complete function.
Add this main to the end of it to see it in operation:
Run it with
|
||||||||||
|
|
|
There is no direct way (i.e. using
|
||||||||||
|
|
|
Use a lookup table, like:
then print each nibble like this
Surely you can use just one table, but it will be marginally faster and too big. |
||
|
|
|
|
Based on dirkgently's answer, but fixing his two bugs, and always printing a fixed number of digits:
|
||||
|
|
|
You have to write your own transformation. Only decimal, hex and octal numbers are supported with format specifiers. |
||
|
|
|
|
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.
Explained: dec = input("Enter a decimal number to convert: ") - prompt the user for numerical input (there are multiple ways to do this in C via scanf for example) base = 2 - specify our base is 2 (binary) solution = "" - create an empty string in which we will concatenate our solution while dec >= base: - while our number is bigger than the base entered solution = str(dec%base) + solution - 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. dec = dec/base - divide the decimal number by the base in preperation to take the next modulo if dec > 0: solution = str(dec) + solution - if anything is left over, add it to the beginning (this will be 1, if anything) print solution - print the final number |
||||
|
|
|
Have a look here |
||
|
|
|
|
This code should handle your needs up to 64 bits.
|
|||
|
|