#104 – The elegant way to initialize structs
A simple struct is often just a small bundle of related data. When you create one, you usually want its members to start with meaningful values immediately. Aggregate initialization lets you do that in one statement, instead of creating the object first…