Arrays & Functions
When passing arrays to functions as parameters they always act as if they were passed as reference.
To declare a function that takes an array as a parameter we use the square brackets after the parameter tag as follows:
int Fname(int Array[], int ArrayCount);