1 2 3 4 5 6 7 8 9 10 11 12 13 14
int foo[2]; int bar[2] = { -1, -1 }; int * foo_p (void) { return foo; } int * bar_p (void) { return bar; }