What is the difference between the following declarations:
int* arr1[8]; int (*arr2)[8]; int *(arr3[8]);
What is the general rule for under
In pointer to an integer if pointer is incremented then it goes next integer.
in array of pointer if pointer is incremented it jumps to next array