Question

Which of the following is not a correct way to initialize a built-in array?
a. int n[5]{0, 7, 0, 3, 8, 2};
b. int n[]{0, 7, 0, 3, 8, 2};
c. int n[5]{7};
d. int n[5]{9, 1, 9};

Answer

This answer is hidden. It contains 23 characters.