Q. Which of the following codes creates an array of 5 integers?
β
Correct Answer: (D)
int arr[5];
Explanation: To create an array of 5 integers use int arr[5];
.