I have:
int8_t byteFlag;
and I want to get the first bit of it? I think I probably need to use & and >> but not sure how exactly. Any help?
|
Now
for
|
|||||||||
|
|
Just mask the high bit
Another trick since this is a signed int
The last one works because of the representation of numbers in two's complement. The high bit is set if the number is negative. |
||||
|
|
|
You would use the & operator. If by "first bit" you mean LSB:
If by "first bit" you mean MSB:
|
|||||||||||||
|
|
|||
|
|