回调函数的用法
Posted muzixiaofeng
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了回调函数的用法相关的知识,希望对你有一定的参考价值。
#include <stdio.h>
void Test_Demo( void ( *FUNC )( int a,int b),int x,int y )
{
//int a = 1;
//int b = 5;
FUNC(x,y);
}
void func(int x,int y)
{
printf("%d
",x+y);
}
int main(void)
{
Test_Demo(func,1,23);
return 0;
}
以上是关于回调函数的用法的主要内容,如果未能解决你的问题,请参考以下文章