typedef 傳回值 (*函式指標名稱) (傳遞參數) ; typedef int (*PFUN) (int x, int y); int ADD(int x, int y) { return x+y; } int SUB(int x, ...
確定! 回上一頁