/*** Example6.c: Pointers and array ***/ void foo(int *p) { int q[10], i; q[i] = *p++; }