文章详情

  • 游戏榜单
  • 软件榜单
关闭导航
热搜榜
热门下载
热门标签
php爱好者> php文档>回调函数的实现

回调函数的实现

时间:2010-12-25  来源:unixeye


#include<stdio.h> #include<string.h>
typedef void (* pFunc)(char* s, int n);
void Caller(pFunc Func, char* s, int n) {      Func(s, n); }
void func(char* s, int n) {      printf("sName0 = %s\r\n", s);      memset(s, 0x00, n);      strcpy(s, "wo hao xiang ni!"); }
int main() {      char buff[32] = {0};      strcpy(buff, "ni xiang wo ma?");      Caller(func, buff, 32);           printf("sName1 = %s\r\n",buff);      return 0; }

相关阅读 更多 +
排行榜 更多 +
辰域智控app

辰域智控app

系统工具 下载
网医联盟app

网医联盟app

运动健身 下载
汇丰汇选App

汇丰汇选App

金融理财 下载