void example(int n) { printf("%zu", sizeof(int[n])); } void example2(int n, int (*a)[n]) { }
void example3(int n) { int x[n]; }