Q. Which of the following is the correct way to declare an array of 5 integers in C++?
β
Correct Answer: (A)
int arr[5];
Explanation: In C++, an array of 5 integers can be declared using 'int arr[5];'.