Q. Which of the following is a correct declaration of a C++ array?
β
Correct Answer: (B)
int a[10];
Explanation: In C++, an array is declared using square brackets, like 'int a[10];'.