码迷,mamicode.com
首页 > 编程语言 > 详细

指针数组和数组指针

时间:2018-11-02 01:43:44      阅读:142      评论:0      收藏:0      [点我收藏+]

标签:code   函数   nbsp   一个   数组   指针   span   数组指针   返回   

 int *num[10] 定义了一个指针数组,代表一个含有10个 int型指针的数组;

 int (*num)[10] 定义了一个指针数组,代表num是一个指针,指向含有10个int型整数的数组;

 

如上形式, int (*fun(int i))[10]; 声明了一个返回值为数组指针的函数;

指针数组和数组指针

标签:code   函数   nbsp   一个   数组   指针   span   数组指针   返回   

原文地址:https://www.cnblogs.com/ScaleCX/p/9893583.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!