int* p[10] would mean that p is an array of 10 pointers to int.
I was a little puzzzled when I came across the following:
int (*p)[10];
What exactly does this one mean?
Thank you for your time.
I was a little puzzzled when I came across the following:
int (*p)[10];
What exactly does this one mean?
Thank you for your time.
Comment