0 votes
in C Plus Plus by
Which of the following is a valid way to declare an array in C Language?

A) int arr[5];

B) arr[5];

C) int arr[];

D) All of the above

1 Answer

0 votes
by

Answer: A

Explanation: The correct way to declare an array in C Language is to specify the data type and the size of the array, as shown in option A.

...