发布时间:2014-10-13 22:48:19
C中的函数有自己特定的类型,函数的类型有返回值、参数类型、参数个数共同决定例如:int add(int i, int j)的类型为int(int, int)C中通过typedef为函数类型重命名typedef type name(parameter list)例如:typedef int f(int, int); typedef void p(int);函数指针用于指向一个函数,函数名是执行函数体的.........【阅读全文】
阅读(1040) | 评论(0) | 转发(0)