Contact: aviboots(AT)netvision.net.il
39,885 questions
51,811 answers
573 users
#include <stdio.h> // unsigned int = 32 bit = 4 bytes struct Bit { unsigned int bit: 1; }; int main(void) { struct Bit b; size_t size_in_byte = sizeof(b); printf("%zu\n", size_in_byte); return 0; } /* run: 4 */