I was at an interview today, and was asked the difference between the following two declarations:
int *A[10];
and
int (*A)[10];
which I did not know. If you think I am missing some important pointer 'pointer', please let me know that too. Thanks.