Im trying to pass a 3 Dimensional array to a function. I got this decleration of the array
char cube[N][N][N];
It's size (N) is a constant.
I want to pass it to a function so I can work on the array in the function and change it without copying the entire array each call..
I actually want to pass a pointer to the beginning of the array and be able to put some info to the array in the function.
Thanks for the help.