I want to extract bits of a decimal no.
For example 7 has a binary 0111 and i want to get 0 1 1 1 all bits stored in bool how can i do so?
OK, a loop is not a good option, can I do something else to this?
|
|
|
If you want the k-th bit of n, then do
Here we create a mask, apply the mask to n, and then right shift the masked value to get just the bit we want. We could write it out more fully as:
You can read more about bit-masking here: http://en.wikipedia.org/wiki/Mask_(computing) Here is a program:
|
||||
|
|
Here's one way to do it—there are many others:
|
|||
|
|
|
here's a very simple way to do it; int main() {
return 0; } |
|||
|
|
|
If you don't want any loops, you'll have to write it out:
As demonstrated here, this also works in an initializer. |
|||
|
|
|
||||
|
|