What is the correct syntax of declaring an array class?

Correct Answer: array<type,size> arr;
The declaration of array class starts with a keyword array followed by <> specifying the type and size of array and then the name of the identifier. Example: array arr; arr is an array class of type in with size = 10.