标签:style blog io ar color os sp div log
返回指针的函数
char *test() { return "rose"; }
指向函数的指针
double haha(double d, char *s, int a) { }
/* 掌握: 1.看懂语法 2.定义指向函数的指针 double (*p)(double, char *, int); p = haha; 或者 double (*p)(double, char *, int) = haha; 3.如何间接调用函数 1> p(10.7, "jack", 10); 2> (*p)(10.7, "jack", 10); */
标签:style blog io ar color os sp div log
原文地址:http://www.cnblogs.com/shangsong/p/4111811.html