Boolean memory size

JosAH:
A boolean takes up one byte in C++ (zero or not zero for false/true); you can use bit fields in C/C++ that take up single bits; eight of them (one bit each) take up a single byte again.

kind regards,

Jos

Well that was the alternate way I'd do it, just generate one bit booleans myself, thanks.