Kizspy | Question: 25
(Choose 2 answers)
Which of the following C/C++ statements correctly initializes an array with the values 1, 2, 3, 4, 5?
A. int arr[] = {1, 2, 3, 4, 5};
B. int arr[5] = {1, 2, 3, 4, 5};
C. int arr[5] (1, 2, 3, 4, 5);
D. All of the others