+1 vote
in Class 12 by kratos

Write the declaration syntax of a structure definition.

1 Answer

+3 votes
by kratos
 
Best answer

struct <structure-tag>

{

< member variable2> list of members

< member variable3>

} <structure-variable-name1>, <structure-variable-name2>;

...