静止的流水的学习日志
静止的流水
全部博文(210)
Windows(1)
Linux(31)
2011年(34)
2010年(121)
2009年(37)
2008年(18)
cynthia
wojiuzhu
jd_lzh
鄙人姓王
Jack_Tan
fanbiubi
猜我咯
aaccp1
chrisy52
分类: C/C++
2010-07-09 15:43:21
int max(int a,int b){ return a>b?a:b;}int _tmain(int argc, _TCHAR* argv[]){ int (*p)(int,int)=&max;//p表示指向一个返回值为int,有两个int形参的函数 int a=10; int b = 12; int c = 13; int d = (*p)((*p)(a,b),c); cout<<d<<endl;//13}
上一篇:C++中类的大小
下一篇:斐波那契数列非递归算法
登录 注册