1. Why do we need structs?
When we need more than one variable in order to represent an object.
2. What are members in a struct?
The variables that are part of the struct are called members.
3. How do you access a member inside a struct?
By the use of a member selection operator which is period. For example; paul.age{32}.
4. What is a nested struct?
A nested struct is a struct that contains other structs.