Is it possible to Convert Int to Hexdecimal without using 'printf'?
Best if the all the value are placed in the variable itself and some sample code with explanation.
|
Is it possible to Convert Int to Hexdecimal without using 'printf'? Best if the all the value are placed in the variable itself and some sample code with explanation. |
|||
| show 4 more comments |
|
The decimal and hexadecimal systems are just ways of expressing the value of the int. In a way "it is already a hexadecimal". |
|||||||||||
|
|
I think you can use itoa in stdlib.h : |
|||||||||||
|
|
Of course it is possible. Just think about how I won't give you a full solution, only hints, based on which you can experiment with the implementation in code: An 8-bit number can be expressed as 2 hex digits, which contain the higher and lower 4 bits, respectively. To get these bits, you can use the bit-shift ( Once you have a 4-bit value, you can easily map it to the correct hex digit using a sequence of |
|||||||||
|
|
Hexdecival vs Decimal vs Binary..etc.. are only different bases that represent the same number. printf doesn't convert your number, it generates an hexdecimal string representation of your number. If you want to implement your own study how to make a conversion between decimal and hexdecimal bases. |
|||
|
|
|
Yes, it is definitely possible to convert an integer to a hexadecimal string without using the "printf" family of formatting functions. You can write such a function by converting the number from base-10 (as we think about it) to base-16 (hexadecimal) and printing the digits in that representation ( |
|||
|
|
If you are referring to displaying an int as a hexadecimal number in C, than you will have to write a function that does the same thing as printf. If you are referring to casting or internal representation, it can't be done because hexadecimal is not a data type. |
|||
|
|
|
An |
|||
|
|
But if you want an answer that gives you an A for your homework, you're not going to get lucky :) |
|||||||
|
sprintfalso verboten ? – cnicutar Aug 24 '11 at 15:22printf- you're just formatting it's output. – itsmatt Aug 24 '11 at 15:22