A structure is a collection of variables of same or different datatypes . It is useful in storing or using informations or databases. Example: An employee’s record must show its salary, position, experience, etc. It all can be stored in one single variable using structures.
Read moreWhich is syntax of declaration of DS?
In the context of a type declaration, the syntax is: typedef struct tag_name structure_type_name; Syntax Notes: All common clauses have the same rules as in the previous section.
Read more