1158
Tell me the truth ...
(piefed.jeena.net)
Welcome to Programmer Humor!
This is a place where you can post jokes, memes, humor, etc. related to programming!
For sharing awful code theres also Programming Horror.
No, in C and C++ a bool is a byte.
All modern architectures (ARM, x86 RISC-V) support byte load/store instructions.
IIRC the stack pointer is usually incremented in 16-byte units. That's irrelevant though. If you store a single bool on the stack it would be 1 byte for the bool and 15 bytes of padding.
Again, no. I think you've sort of heard about this subject but haven't really understood it.
The requirement is that fields are naturally aligned (up to the machine word size). So a byte needs to be byte-aligned, 2-bytes needs to be 2-byte aligned, etc.
Padding may be inserted to achieve that but that is padding it doesn't change the size of the actual bool, and it isn't part of the bool.
They will be, if it fits the alignment requirements. Create a struct with 8 bools. It will take up 8 bytes no matter what your packing setting is. They even give an example:
They used
byte
here but it's the same forbool
because a bool is one byte.I'm really surprised how common this misconception is.