今天在一問一答審核題目的時候發現乙個題目的題幹是錯的,主要意思就是定義乙個函式指標,現在將修改後的結果放上來,給出定義函式指標的方法:
/**
日期: 2013.5.8
功能: 定義函式指標,並且呼叫
*/#includeusing namespace std;
int max(int a,int b) //返回二者之中較大者
void fun(int a,int b,int func(int c, int d))
//也可以使用如下定義
//void fun(int a, int b, int (*func)(int c, int d))
int main()
return 0;
}
7 函式 呼叫及定義函式
資料型別轉換 python內建的常用函式還包括資料型別轉換函式,比如int 函式可以把其他資料型別轉換為整數 int 123 123 int 12.34 12 float 12.34 12.34 str 1.23 1.23 str 100 100 bool 1 true bool false函式名其...
09 函式定義及呼叫
makefile 中支援函式的概念 自定義函式示例 define func1 echo my name is 0 endef define func2 echo my name is 0 echo param one is 1 echo param one is 2 endef test call ...
C 函式指標的定義方法及使用
int add int a,int b 第一種,c語言通用。定義乙個process job函式指標型別,返回值為 int 函式引數為int a,int b。使用用兩種方法。typedef int process job int a,int b process job a a add cout a 1...