: int ArrayNum[2]={1,2}
ArrayNum is
->
[2]: an array of
<-
int: int
: void f1(int)
f1 is
->
(int): a function take int as argument and return
<-
int: int
: void (*)(int) ArrayFuncPtr[2] ={ f1 , f2 };
ArrayFuncPtr
->
[2]: is an array of
<-
(int): ??? (function 一定要在右邊,也不是 int)
<-
(*): pointer...??? nonsense
<-
void: ???????
: void (*ArrayFuncPtr[2])(int) ={ f1 , f2 };
ArrayFuncPtr is
->
[2]: an array of
<- (括號裏面先做)
*: pointer to
->
(int): a function take int as argument and return
<-
void: void
不過還是善用 typedef 讓生命更美好。