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.

Please tell me how do I print a bit, like printf("%d",bit);.

Thanks a lot

share|improve this question
This is a good question that needs rephrasing, but I don't have edit privileges yet.... – Jarred McCaffrey Dec 18 '08 at 15:35

6 Answers

If bit is just an int that contains the value you want in the least significant bit, then:

printf("%d", bit & 0x1);

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.

share|improve this answer
Keep in mind that extracting one bit from a multi-byte number makes you run into endianess issues. – gnud Dec 8 '08 at 15:57
3  
@gnud: That only applies when done against memory, using pointers. bit & 0x1 will always work, regardless of the way the value is stored in memory. – unwind Dec 8 '08 at 16:04

If you need to generalize more than Herms, you could do this:

#define IsBitSet(val, bit) ((val) & (1 << (bit)))

/* ... your code ... */

printf ("%c", IsBitSet(bit, 0) ? '1' : '0');

The printf is equivalent to Herms answer as is.

If you're talking about bitfield in C, you can do this:

struct foo { int b:1; } myFoo;

printf("%c", myFoo.b ? '1' : '0');
share|improve this answer
There is a missing closing parenthesis at the end of the macro definition, no? – bortzmeyer Dec 18 '08 at 10:35
good catch - fixed it. – plinth Dec 18 '08 at 15:32
This seems a bit roundabout - why not ((val) >> (bit)) & 0x1 so you can print it as an integer instead of the ternary? – Aaron Dufour Oct 6 '12 at 4:33

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++.

share|improve this answer

To print the m-th bit (m from 1..16 or 32) of n:

void print_bit(n, m)
{
    printf("%d", bit & (1 << (m - 1));
}

Remove the - 1 bit if your bit counter starts at 0.

share|improve this answer
That won't quite work. You're masking the bit you want, but you're leaving that bit in place, so you won't get 1 or 0. To always get 1 or 0 for that bit you'd need to shift the variable right, not shift the mask left. – Herms Dec 8 '08 at 20:07
Right, missed that, thanks. – Keltia Dec 9 '08 at 13:18

you can use "union"

union bitshow{
unsigned bit1:1;
int i;
};

int main(){
union bitshow bit;
cin >> bit.i;
cout << bit.bit1;
return 0;
}
share|improve this answer
2  
Would that print the most significant bit, least significant bit, or something else? You can't know, because it isn't portable. – interjay Jul 11 '11 at 12:06

The C++ answer is easier than the C89 one, with the native bool type:

bool b = true;
std::cout << b;

C99 is quite similar:

_Bool b = 1;
printf("%d", b);
share|improve this answer
Bools are generally not one bit in size. – Jasper Bekkers Dec 18 '08 at 16:34

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.