declared using the keyword ‘struct’ • Structure elements are referenced using its object name followed by dot(.) operator and then the member name • A structure without a name/tag is called anonymous structure. • The structure elements can be initialized either by using separate assignment statements or at the time of declaration by surrounding its values with braces. • A structure object can also be assigned to another structure object only if both the objects are of same structure type. • The structure declared within another structure is called a nested structure • A structure can contain array as its member element.
• Array of structure variable can also be created. Points to Remember: Chapter Page - -