ARRAY of BITS in C

What I learned today.

struct myByte {
unsigned value : 1;
};

myByte bit[8];

:fearful:

I would never do that but I do find it amusing.