83.1k views
5 votes
Structure variable declarations can be incorporated into a structure definition by placing a comma-separated list of variable names: After struct StructureName and before the left brace. After the left brace and before the member declarations. After the member declarations and before the right brace. After the right brace and before the semicolon.

1 Answer

5 votes

Answer:

After the right brace and before semicolon

Step-by-step explanation:

Example of structure is given below:

Struct Structurename {

Int var 1;

float var 2;

} Mem 1, mem2 ; <--- These two are defined as after braces and before semicolon are called structure variable.

User Venkatesh Gowda
by
5.6k points