Not restricted.
example in C: const int a [] = {10, 20, 40, 80};
int array_name [100];
Button[] buttons;
THE DECLARATION SECTION CONTAINS: int num[4]; where int is the type of input that array accepts, num is the name of the array and [4] means array reserves 4 blocks for storage of data.