指针函数 函数指针 数组指针 指针数组
时间:2010-11-02 来源:Jelline
普通指针
/*declare i as int*/ |
指针函数
/*declare f as function returning int*/
|
函数指针
/*declare f as pointer to function returning pointer to int*/ |
指针数组
/*declare f as array of int*/
|
数组指针
/*declare f as pointer to array of int*/ |
再来两个