Passing Arrays to Functions
void FillArray ( int array[ ], int numElems);
The function definition header:
void FillArray ( int array[ ], int numElems)
FillArray ( array, SIZE);
Notice that we are passing only the name of the array (an address) and that we aren’t returning anything (the function is void)