c++ 函数指针

2021-06-19 14:06

阅读:545

标签:string   cout   int   main   ace   iostream   include   end   return   

#include 
#include 

using namespace std;


int max(int a,int b){
    return a > b ? a: b;
}


int main() {
    int (*func)(int,int);
    func = max;
    int a = 10,b=11;
    cout 

c++ 函数指针

标签:string   cout   int   main   ace   iostream   include   end   return   

原文地址:https://www.cnblogs.com/niconico-girl/p/9690374.html


评论


亲,登录后才可以留言!