heya.. i wanted to ask if there was a way to give a pointer to a multidimensional array of, say, ints, as a function argument. i tried a somewhat natural approach, which seems to have failed.. i'm no expert at stuff like that, so i tried:
int numbers[ 10 ][ 10 ];
inline void func( int **array ) {} // this doesn't matter really..
int main( void ) {
func( numbers );
return 0;
}
it looked ok to me... please tell me how to do it the right way