Please tell me how do I print a bit, like printf("%d",bit);.
Thanks a lot
|
|
If bit is just an int that contains the value you want in the least significant bit, then:
should do it. The & is doing a binary-AND with a number with only the first significant bit set, so you're removing all the rest of the bits in the integer. |
|||||||
|
|
If you need to generalize more than Herms, you could do this:
The printf is equivalent to Herms answer as is. If you're talking about bitfield in C, you can do this:
|
|||||||
|
|
Related question: http://stackoverflow.com/questions/47981/how-do-you-set-clear-and-toggle-a-single-bit-in-c is an extended discussion of single-bit access in c and c++. |
||||
|
|
|
To print the m-th bit (m from 1..16 or 32) of n:
Remove the |
|||||
|
|
you can use "union"
|
|||||
|
|
The C++ answer is easier than the C89 one, with the native bool type:
C99 is quite similar:
|
|||
|
|