I need to convert an int to a 2 byte hex value to store in a char array, in C. How can I do this?
|
|
If you're allowed to use library functions:
Your integer may contain more than four hex digits worth of data, hence the check first. If you're not allowed to use library functions, divide it down into nybbles manually:
|
|||
|
|
Assuming int to be 32 bits; easiest way: just use sprintf()
Now use hexval[0] thru hexval[3]; if you want to use it as a null-terminated string then add |
|||||||||
|
You'll probably want to check |
|||||
|
|
Rather than
Its a lot safer, and is available in pretty much every compiler. |
|||
|
|
|
Most of these answers are great, there's just one thing I'd add: you can use sizeof to safely reserve the correct number of bytes. Each byte can take up to two hex digits (255 -> ff), so it's two characters per byte. In this example I add two characters for the '0x' prefix and one character for the trailing NUL.
|
|||
|
|
|
|||
|
|
|
Normally I would recommend using the This is an incomplete solution for converting 1 byte, don't forget to add bounds checking, and make sure the array is static or global, recreating it for every check would kill performance.
|
|||
|
|
|
Here's a crude way of doing it. If we can't trust the encoding of ascii values to be consecutive, we just create a mapping of hex values in char. Probably can be optimized, tidied up, and made prettier. Also assumes we only look at capture the last 32bits == 4 hex chars.
|
|||
|
|
|
Figured out a quick way that I tested out and it works. int value = 11; array[0] = value >> 8; array[1] = value & 0xff; printf("%x%x", array[0], array[1]); result is: 000B which is 11 in hex. |
|||
|
|
|
Perhaps try something like this:
|
|||||||||
|