Possible Duplicate:
How do you set, clear and toggle a single bit in C?
Can we check the individual bit in c or c++? just to check if it is 0 or 1
Thanks
Can we check the individual bit in c or c++? just to check if it is 0 or 1 Thanks |
|||
| show 1 more comment |
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
|
You can use a
Where s_char would be your variable and 0x80 is a hex representation of the byte 1000 0000. |
|||
|
|
|
To check if a particular bit is a one or zero, you can use
With var is the variable you are checking and bit_to_check is the zero-indexed bit you are looking at. |
|||
|
|
bit & 1? – Ash Burlaczenko Jan 10 '12 at 17:18