在C中试验指针和数组

Ale*_*ood 1 c arrays pointers

有人可以向我解释一下之间的区别:

int *arr[5]vs. int (*arr)[5]vs.int *(*arr)[5]

我试图围绕如何在C中实际表示指针/数组...