FAQ - GCC Wiki - GCC, the GNU Compiler Collection - GNU Project - Free Software
You get: test.c:8: warning: passing argument 1 of ‘foo’ from incompatible pointer type [-Wincompatible-pointer-types] You are passing int (*)[3] to const int (*)[3], which is not correct according to the C standard. You can disable the warning with -Wno-i...