Re: Logical Bit x "Physical" Bit



If you dont hit memory upper limit i would go for byte(char), since
byte is normally easier to manipulate than single bits in high level
languages.

You have things like bitset and vector<bool> in C++ if you want to save
some memory, but performance might decrease a little.

.