Multiple Choice
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};
Correct Answer:

Verified
Correct Answer:
Verified
Related Questions
Q7: Which of the following is not an
Q7: Which of the following statements does not
Q8: The assignment operator _ assigns the value
Q9: In what order would the following operators
Q10: Which of the following is the escape
Q11: Which of the following does not cause
Q14: The escape sequence for a newline is:<br>A)
Q15: Which of the following is not a
Q16: Which is the output of the following
Q17: Which of the following is not a