How would i go about accessing the individual bits inside a c++ type, char or any c++ other type for example.
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.
|
|
If you want access bit Get: Set: Unset: Toggle: |
|||||||||||||
|
|
You would use the binary operators
Note that 4’s binary representation is 0100 |
|||
|
|
|
That is very easy Lets say you need to access individual bits of an integer Create a mask like this int mask =1; now, anding your numberwith this mask gives the value set at the zeroth bit in order to access the bit set at ith position (indexes start from zero) , just and with (mask< |
|||
|
|