美文网首页
函数指针

函数指针

作者: 程序员都是傻子呀 | 来源:发表于2020-03-06 20:26 被阅读0次
    Snip20200229_7.png
    int getMax(int I, int j) {
      return I>j?I:j;
    }
    int *getMin(int I, int) {
      int result = I<j?I:j;
      int *pResult = &result;
      return pResult; // 返回一个指针
    }
    
    // 函数指针
    int (*p1)(int, int);
    p1 = getMax;
    int result = p1(3,5)
    printf("max=%d\n",result);
    // 返回指针的函数
    int *p2 = getMin(3,5);
    printf("min=%d\n", *p2);
    

    相关文章

      网友评论

          本文标题:函数指针

          本文链接:https://www.haomeiwen.com/subject/jgnvhhtx.html