21
Dec
Unnamed Bit-Field
Related Blog Items
- Dynamic width and precision in printf
- C++ Advanced Tutorial - Lesson 5
- Program Linkage
- Linked Lists
- Posix Directory Browsing API for Windows
An unnamed bit field is used for padding to conform to external imposed layouts.
Unnamed bit-field with a width of zero specifies alignment of the next bit field at an allocation unit boundary.
struct becks {
…
int :3 //three bit field
…
}
[tags]unnamed bitfield, bitfields[/tags]
Popularity: 7%
You need to log on to convert this article into PDF
Related Blog Items - Dynamic width and precision in printf
- C++ Advanced Tutorial - Lesson 5
- Program Linkage
- Linked Lists
- Posix Directory Browsing API for Windows
Related Blog Items
- Dynamic width and precision in printf
- C++ Advanced Tutorial - Lesson 5
- Program Linkage
- Linked Lists
- Posix Directory Browsing API for Windows
No Comments
No comments yet.