
Bool Values
Question: How do I make 1 bool take 1 bit instead of 1 byte? Answer: Instead of an array, you should use an STL container that is specifically designed to store bool values as bits: std::vector < bool >. You need to #include < vector > and create an instance