指针与数组

来源:互联网 发布:安监局大数据 监管 编辑:程序博客网 时间:2024/06/01 23:12

int *arr[10]//指针数组

int (*arr)[10];//数组指针

int(*fun)(void);//函数指针

int(*fun[10])(void);//函数指针数组

int(*(*fun)[10])(void);//指向函数指针数组的指针