Arce 发表于 2021-8-8 13:34:24

C语言学习之 通过指向函数的指针 实现函数的调用

// 通过指向函数的指针 实现函数的调用

#include "stdafx.h"


int max(int a,int b);//函数声明

int main(int argc, char* argv[])
{


   int a,b;
   scanf("%d %d",&a,&b);

int (*p)(int,int);

   p=max;

printf("max=%d\n",(*p)(a,b));

return 0;


}

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







https://img-my.csdn.net/uploads/201302/20/1361339638_2497.png



文档来源:51CTO技术博客https://blog.51cto.com/u_15316467/3311708
页: [1]
查看完整版本: C语言学习之 通过指向函数的指针 实现函数的调用