#include main() { int a[2][2][2] = {{10,2,3,4},{5,6,7,8}}; int p,*q; p=&a[2][2][2]; *q=**a printf("%d----%d",*p,*q); }
Compilation error
syntax error
10 2 3 4 5 6 7 8
print the address of pointer p and q