花之剑'HOME

一朵飘舞在风中的雪花,挣扎着,不想被融化。

C function declaration

Posted on 2007-08-18 13:07 花之剑 阅读(211) 评论(0)  编辑  收藏 所属分类: c/c++ & algorithm

char **argv
argv: pointer to char
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


只有注册用户登录后才能发表评论。


网站导航: