Latest C Aptitude Question SOLUTION: output?? #include main() {i nt 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); } Answer: SomeGarbageValue---1 Explanation: p=