I was wondering if I was doing this correctly. Does this line of code:

Code:
main()
{
 siPlayerGrid[8][16][5] = setter(siPlayerGrid, siCompGrid, i, j);
}

setter(short siPlayerGrid, short siCompGrid, short i, short j)
{
 return siPlayerGrid[8][16][5];
}
Correctly return the whole array?

Thanks in advance.