Here is my code along with question in it.
#include<stdio.h>
int main(){
int i,a[2][3]={{1,2,3},{4,5,6}},*p=&a;
printf("%d",p); // Printing the base value.
printf("\n%d",p[4]); // Q) Does this means *(p + 4) ?
printf("\n%d",p[5]); // Q) Does this means *(p + 5) ?
getch();
return 0;
}