Possible Duplicate:
Multi-dimensional array in C++
I need to create a function that has one parameter which is a multi-dimensional array with two dimensions being user-specified, e.g.
    int function(int a, int b, int array[a][b])
    {
     ...
    }
How would I do that in C++ ?
 
     
     
    