struct stats
{
char top : 1;
char bottom : 1;
char side : 2;
} MyStat;
I have seen this format with integers but how does the above char bit field work and what does it represent?
Thank You.
I have seen this format with integers but how does the above char bit field work and what does it represent? Thank You. |
||||
|
|
|
Char bit fields work in the same way as int, just the base type is 8-bit wide, not 32-bit. So you'd get a struct stats, which has the size of 1 byte, and 3 member variables, occupying a total of 4 bits. |
|||||||||||
|
|
Bitfields should be declared with type That said, it may be a hint to the compiler that the alignment of the According to C99 6.7.2.1/9,
and a footnote:
|
|||||||||||||||||||
|
|
it just defines the size of the variable that you will use.
This is not supported by the standard (typical use is unsigned int), but it's a nice attempt :) re: your query, it's an attempt by the implementer to use less memory for their bitfields (char as opposed to unsigned int) Additionally, from Atmel, we get:
|
|||||||||||||||||||||
|