#include <iostream>

void foo(int tab[][5]) {}

int main() {
	int tab[5][5];
	foo(tab);
}