Multiple Choice
What is right way to Initialization array?
A) int num[6] = { 2, 4, 12, 5, 45, 5 } ;
B) int n{} = { 2, 4, 12, 5, 45, 5 } ;
C) int n{6} = { 2, 4, 12 } ;
D) int n(6) = { 2, 4, 12, 5, 45, 5 } ;
Correct Answer:

Verified
Correct Answer:
Verified
Related Questions
Q13: Which of the following shows the correct
Q14: For 16-bit compiler allowable range for integer
Q15: What is function?<br>A)function is a block of
Q16: What is Keywords?<br>A)keywords have some predefine meanings
Q17: Bitwise operators can operate upon?<br>A)double and chars<br>B)floats
Q19: Which one of the following is not
Q20: A C variable cannot start with<br>A)an alphabet<br>B)a
Q21: Which is the right way to declare
Q22: C programs are converted into machine language
Q23: Which operators are known as Ternary Operator?<br>A)::,