指针数组与数组指针 指针函数与函数指针 的区别

 指针数组与数组指针  指针数组 指针数组是一个数组,数组的元素保存的是指针;数组 数组指针 数组指针是一个指针,该指针指向的是一个数组;函数 #include <stdio.h> #define SIZE 5 int main(int argc, char const *argv[]) { int arry[5] = {1,2,3,4,5}; int (*p)[SIZE] = &ar
相关文章
相关标签/搜索