What does the following C++ code mean?
unsigned char a : 1; unsigned char b : 7;
I guess it creates two char a and b, and both of them sho
I believe those would be bitfields.