C Programming-Structure and Union Questions and Answers
Practice ModeShowing 10 of 29 questions
Q1
Structure is a
Answer: Option B
Q2
Structure is a data type is which
Answer: Option C
Q3
provides a facility for user defined data type using
Answer: Option C
Q4
The keyword used to represent a structure data type is
Answer: Option B
Q5
Structure declaration
Answer: Option A
Q6
In a structure defination
Answer: Option C
Q7
If one or more members of a structure are pointer to the same structure the structure is known as
Answer: Option C
Q8
If one or more members of a structure are other structures, the structure is known as
Answer: Option A
Q9
What type of structure is created by the following definition ?
struct first {.....struct second *s;};
struct second {.....;struct first *f ;};
Answer: Option B
Q10
The changes made in the members of structure are not available in the calling function if
Answer: Option D