Passing Arrays to Functions
FillArray ( array, SIZE);
The function definition header:
void FillArray ( int array[ ], int numElems)
Notice that we are passing only the name of the array (an address) and that we aren’t returning anything (the function is void)
We don’t have to return the array, because the original will be modified by the function