- The structure is a user-defined data type that allows storing multiple types of data in a single unit. It occupies the sum of the memory of all members.
 - The structure members can be accessed only through structure variables.
 - Structure variables accessing the same structure but the memory allocated for each variable will be different.
 
Sandhya Answered question June 27, 2023
							The structure in C is a user-defined data type that can be used to group items of possibly different types into a single type. The struct keyword is used to define the structure in the C programming language. The items in the structure are called its member and they can be of any valid data type.
Sandhya Answered question June 27, 2023
				