Question

Q8[C++11]: Which of the following is false?
a. To receive a list initializer as an argument to a constructor, you can declare the constructor's parameter as type list_initialier<T> where T represents the type of the values in the list initializer.
b. To receive a list initializer as an argument to a constructor, you can declare the constructor's parameter as type initializer_list<T> where T represents the type of the values in the list initializer.
c. It's not possible to pass a list initializer to a constructor.
d. (a) and (c).

Answer

This answer is hidden. It contains 12 characters.