1 2 3 4 5 6 7 8 9 10 11
char foo(char bar[]) { return bar[1]; } extern char foo(char *); int main(void) { if (foo("xy") != 'y') abort (); exit (0); }