C pointer to array/array of pointers disambiguation

前端 未结 13 1394
我寻月下人不归
我寻月下人不归 2020-11-21 05:19

What is the difference between the following declarations:

int* arr1[8];
int (*arr2)[8];
int *(arr3[8]);

What is the general rule for under

13条回答
  •  梦谈多话
    2020-11-21 05:48

    int* arr[8]; // An array of int pointers.
    int (*arr)[8]; // A pointer to an array of integers
    

    The third one is same as the first.

    The general rule is operator precedence. It can get even much more complex as function pointers come into the picture.

提交回复
热议问题