I have a large mass of integers that I'm reading from a file. All of them will be either 0 or 1, so I have converted each read integer to a boolean.
What I need to do is take advantage of the space (8 bits) that a character provides by packing every 8 bits/booleans into a single character. How can I do this?
I have experimented with binary operations, but I'm not coming up with what I want.
int count = 7;
unsigned char compressedValue = 0x00;
while(/*Not end of file*/)
{
...
compressedValue |= booleanValue << count;
count--;
if (count == 0)
{
count = 7;
//write char to stream
compressedValue &= 0;
}
}
Update
I have updated the code to reflect some corrections suggested so far. My next question is, how should I initialize/clear the unsigned char?
Update
Reflected the changes to clear the character bits.
Thanks for the help, everyone.

<<instead. – Kerrek SB Jan 24 at 20:00<<,1 << count– Krister Andersson Jan 24 at 20:01unsigned charis probably safer here than plainchar. – aschepler Jan 24 at 20:02>>to<<, you might also try counting from 7 down to 0 instead of 0 up to 7. – Mark Ransom Jan 24 at 20:02|=does not "overwrite" bits. – aschepler Jan 24 at 20:09