Syntax to Define a Structure in C structName: This is the name of the structure which is specified after the keyword struct . data_Type: The data type indicates the type of the data members of the structure. A structure can have data members of different data types.
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