I don't find the theory of pointers particularly troublesome, but I am occasionally flummoxed by some of the notation. In the following example, can someone explain how the line p = (int*) a works. The explanation I have of the code suggests that this line simply stores the address of the first element of the first array in the pointer p, such that printf("%u", *p)yields 5. If this is the case is this line simply a more indirect way of writing p = a[0]?
int main()
{
int a[][4] = {
5, 7, 5, 9,
4, 6, 3, 1,
2, 9, 0, 6
};
int *p; // create an integer pointer
int (*q)[4]; // create a pointer to a four-element integer array
p = (int*)a; // ?
q = a;
printf("%u %u\n", p, q);
p++;
q++;
printf("%u %u\n", p, q);
return 0;
}