码迷,mamicode.com
首页 > 其他好文 > 详细

C 函数指针的用法

时间:2014-09-22 20:39:53      阅读:166      评论:0      收藏:0      [点我收藏+]

标签:io   c   ef   size   r   type   return   函数   print   

#include <stdio.h>
#include <stdlib.h>

typedef struct DataNode
{
int (*handle)();
}tDataNode;

int print()
{
printf("Hello World!\n");
return 0;
}

int main()
{
int a = 0;
tDataNode * pData = NULL;
pData= (tDataNode *) malloc (sizeof(tDataNode));
pData->handle = print;
pData->handle();
return 0;
}

C 函数指针的用法

标签:io   c   ef   size   r   type   return   函数   print   

原文地址:http://www.cnblogs.com/on-the-way/p/3986304.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!