Question

What does the following statement do?
struct card a = {"Three", "Hearts"};
(a) It creates a variable card of type struct with two members specified in the list.
(b) It creates two variables named Three and Hearts of type struct card a.
(c) It creates a variable a to be of type struct card and initializes it to the values in the list.
(d) It creates two variables named Three and Hearts of type struct card.

Answer

This answer is hidden. It contains 3 characters.