What is type alias
A type alias is a different name by which a type can be identified.
What is the syntax for type alias
typedef — existing_type — new_type_name
OR
using new_type_name = existing_type
What is a structure
A structure is a group of data elements grouped under one name. These data elements, known as members, can have different types and different lengths
How do you access struct members.
The syntax for that is simply to insert a dot(.) between the object name and the member name.
apple.weight
apple.price