 |
| 我的日历 |
| |
|
| 分类日志 |
| |
|
| 友情链接 |
|
|
| 最新评论 |
|
|
| 搜索日志 |
|
|
| 访问计数 |
|
|
| 获取 RSS |
| |
 | |
| |
(array and pointer) [2005-4-18] youalwayscan 发表在 C/C+基础
| int (*daytab)[13] daytab: pointer to array[13] of int int *daytab[13] daytab: array[13] of pointer to int void *comp() comp: function returning pointer to void void (*comp)() comp: pointer to function returning void char (*(*x())[])() x: function returning pointer to array[] of pointer to function returning char char (*(*x[3])())[5] x: array[3] of pointer to function returning pointer to array[5] of char | |
|
|