Question

Which of the following uses C++11's list initialization to initialize count to 0?
a. int count = 0;
b. int count[0];
c. int count(0);
d. int count{0};

Answer

This answer is hidden. It contains 14 characters.