C - Structure and Union Questions and Answers
Practice ModeShowing 10 of 51 questions
Q11
A structure can have
Answer: Option D
Q12
The structure declaration
struct person {char name [20]; the int age; struct person woman;};
Answer: Option B
Q13
A structure
Answer: Option A
Q14
In a structure definition,
Answer: Option C
Q15
The operator exclusively used with pointer to structure is
Answer: Option B
Q16
If one or more members of a structure are pointers to the same structute, the structute is known as
Answer: Option C
Q17
If one or more members of a structure are other structures, the structure is known as
Answer: Option A
Q18
What type of structure is created by the folowing definition ?
struct first {... ; struct second *s;};
struct second {... ; struct first *f;};
Answer: Option B
Q19
The changes made in the members of a structure are not available in the calling function if
Answer: Option D
Q20
The changes made in the members of a structure ae available in the calling function if
Answer: Option A