How to pass 2D array to a function without pointer?

How to pass 2D array to a function without pointer?

hello @Mac2503
declare a constant size array inside main function and then in declaration of function mention coulmn size .

example
void fun(int arr[][10]){ // note 10 is same as array colum size declared in main function
`

logic.................`

}
int main(){
int arr[30][10];
fun(arr);
}