Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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

share|improve this question
8  
Yes we can, but we don't need to check: a bit is always o or 1. – wildplasser Jan 10 '12 at 17:18
Am I missing something? Whats wrong with bit & 1? – Ash Burlaczenko Jan 10 '12 at 17:18
You're question isn't very clear. What do you mean by "individual bit"? – slayton Jan 10 '12 at 17:19
you mean we can check it by AND it with 1 and check the result? – Abdul Samad Jan 10 '12 at 17:19
show 1 more comment

marked as duplicate by Wooble, Alok Save, crashmstr, Mysticial, Brian Roach Jan 10 '12 at 17:19

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.

2 Answers

You can use a mask to do this. For example, if you wanted to check if the left-most bit was set, you could do something like this:

s_char & (0x80)

Where s_char would be your variable and 0x80 is a hex representation of the byte 1000 0000.

share|improve this answer

To check if a particular bit is a one or zero, you can use

if( var & (1 << bit_to_check) )
{
//It's a one!
}
else
{
//It's a zero!
}

With var is the variable you are checking and bit_to_check is the zero-indexed bit you are looking at.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.