Solved

Consider the Following Declaration: Int Alpha[5] = {3, 5, 7

Question 40

Multiple Choice

Consider the following declaration: int alpha[5] = {3, 5, 7, 9, 11};.Which of the following is equivalent to this statement?


A) int alpha[] = {3, 5, 7, 9, 11};
B) int alpha[] = {3 5 7 9 11};
C) int alpha[5] = [3, 5, 7, 9, 11];
D) int alpha[] = (3, 5, 7, 9, 11) ;

Correct Answer:

verifed

Verified

Unlock this answer now
Get Access to more Verified Answers free of charge

Related Questions