I’m trying to reverse the order of bits in C (homework question, subject: bitwise operators). I found this solution, but I’m a little confused by the hex values used — 0x01 and 0x80.
unsigned char reverse(unsigned char c) {
int shift;
unsigned char result = 0;
for (shift = 0; shift < CHAR_BITS; shift++) {
if (c & (0x01 << shift))
result |= (0x80 >> shift);
}
return result;
}
The book I’m working out of hasn’t discussed these kinds of values, so I’m not really sure what to make of them. Can somebody shed some light on this solution? Thank you!
0x01 is the least significant bit set, hence the decimal value is 1.
0x80 is the most significant bit of an 8-bit byte set. If it is stored in a signed char (on a machine that uses 2’s-complement notation – as most machines you are likely to come across will), it is the most negative value (decimal -128); in an unsigned char, it is decimal +128.
The other pattern that becomes second nature is 0xFF with all bits set; this is decimal -1 for signed characters and 255 for unsigned characters. And, of course, there’s 0x00 or zero with no bits set.
What the loop does on the first cycle is to check if the LSB (least significant bit) is set, and if it is, sets the MSB (most significant bit) in the result. On the next cycle, it checks the next to LSB and sets the next to MSB, etc.