Introduction
Structs help you group related information together in one place. They let you create your own types to organize data clearly.
When you want to represent a real-world object like a person or a car with multiple details.
When you need to keep related data together, like a book's title, author, and pages.
When you want to pass multiple values as one unit to functions.
When you want to create a blueprint for data that you will use many times.