C pointer to array/array of pointers disambiguation

前端 未结 13 1373
我寻月下人不归
我寻月下人不归 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 06:00

    typedef int (*PointerToIntArray)[];
    typedef int *ArrayOfIntPointers[];
    

提交回复
热议问题