Level 65
Level 67
3 words 0 ignored
Ready to learn
Ready to review
Ignore words
Check the boxes below to ignore/unignore words, then click save at the bottom. Ignored words will never appear in any learning session.
Ignore?
union
special data type available in C that allows to store different data types in the same memory location
Defining a Union
union [union tag] { member definition; member definition; ... member definition; } [one or more union variables];
Accessing Union Members
To access any member of a union, we use the member access operator (.).