if you are made structure variable declaration immediately after the declaration of the structure then to declare a structure variable the keyword struct must be return true or false
Answers
Answered by
0
Answer:
Your Question is not clear still I'll share my knowledge about structures.
Explanation:
Struct Student{
int roll_number;
char Name;
}s1;
struct Student s2;
There are two ways to declare structure variables
1) By mentioning the name of the variable at the end of the Structure Parenthesis followed by the semi-colon .
2) By using the keyword struct with the syntax : struct struct_name variable_name;
Similar questions