Structures in C
What is a structure?
A structure is a key word that create user defined data type in C/C++. A structure creates a data type that can be used to group items of possibly different types into a single type.
How to declare structure variables?
A structure variable can either be declared with structure declaration or as a separate declaration like basic types.
How to initialize structure members?
Structure members cannot be initialized with declaration.