[求助]c++ syntax about 2d array
I wrote a function // a is 2d --- n x n matrix
void f(int** a, int n); // (1)
int main()
{
const int n=3;
int a[n][n]; // (2)
/**
Question: how do I pass the matrix a to f()?
Don't modify lines (1) and (2).
Thanks.
*/
return 0;
}

I am working on a system which has no Chinese input. Please don\'t blame me for typing English.