指针是C语言的灵魂!

C语言的指针给我们提供了操作硬件的捷径,指针的用处真的很强大。看下面几个声明,看各自声明了什么。

int (*foo())();
int (*foo1())[];
int (*foo2[])[];

Read the rest of this entry »