int* arr[8]; // An array of int pointers.
int (*arr)[8]; // A pointer to an array of integers
self explaining
taken from http://stackoverflow.com/questions/859634/c-pointer-to-array-array-of-pointers-disambiguation
int* arr[8]; // An array of int pointers.
int (*arr)[8]; // A pointer to an array of integers
self explaining
taken from http://stackoverflow.com/questions/859634/c-pointer-to-array-array-of-pointers-disambiguation