How do you declare an array of structures in C?
A. struct myStruct arr[];
B. myStruct array[];
C. struct array myStruct[];
D. myStruct[] arr;
Answer: Option B
Related Questions on Structure and Union
Which of the following can be a member of a structure?
A. Function
B. Another structure
C. Enumeration
D. All of the above

Join The Discussion