Multiple Choice
Which of the following is not a correct way to initialize an 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 };
Correct Answer:

Verified
Correct Answer:
Verified
Related Questions
Q7: Given the following declaration, what is the
Q9: Unless otherwise specified, entire arrays are passed
Q10: Which of the following statements is false
Q10: Which of the following is false?<br>A) The
Q11: After the i<sup>th</sup> iteration of the insertion
Q13: A double subscripted array declared as int
Q14: Linear search is highly inefficient compared to
Q15: In a typical nested for-loop used to
Q16: Which of the following does not declare
Q17: To prevent modification of array values passed