Lecture 1 - Slide 21 : 34
Structures and Unions

A struct aggregates fields of different types to a new composite type

A union is the poor man's - the C programmer's - way of specializing a struct in two or more directions

The C struct is an important starting point of the C++ abstraction mechanisms and OOP