Which of the following correctly declares an array in C++ ?
The correct answer is B) int array[5];
In C++, an array is a collection of elements of the same data type, stored in contiguous memory locations. To declare an array in C++, you need to specify the data type of the elements and the size of the array.