Which of the following is NOT a valid array declaration?
int arr[10];
int arr[] = {1, 2, 3};
int arr[3] = {1, 2, 3, 4};
float marks[5];
This question is part of this quiz :