Arrays in C | Q - 5

Last Updated :
Discuss
Comments

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];

Tags:
Share your thoughts in the comments