bool test;
sizeof(test) = 1 if using VS 2010. Since every C++ data type must be addressable,
the "test" bool variable is 8-bits(1 byte).
My question is that does the "test" variable really occupy 1 byte in memory?
Is there any implementation skill that can make the bool data type occupy only one bit? If yes, can you give me an example?
bool test1[32](in VS 2010),
int test2(in VS 2010)
Do test1 and test2 occupy the same memory?