1. Why do we need structs?
There are many instances in programming where we need more than one variable in order to represent an object. For example, to represent yourself, you might want to store your name, your birthday, your height, your weight, or any other number of characteristics about yourself.
2. What are members in a struct?
Variables within the struct.
3. How do you access a member inside a struct?
After declaring a variable with the type of an existing struct, reference members within the struct using the name of the declared variable followed by a period followed by the struct member name.
4. What is a nested struct?
A struct referenced within the definition of another struct.