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