码迷,mamicode.com
首页 > 编程语言 > 详细

C 语言中的指针函数写法

时间:2021-06-30 18:21:24      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:turn   style   div   color   define   col   rgb   int   har   

指针函数

#include <stdio.h>
#define uint8           unsigned char
#define uint16          unsigned short
#define uint32          unsigned int

uint8 get_device_type_flash() { 
    printf("--------------- run ------------------ \n");
    return 100;
}
uint8 get_flash_1byte(void * funtype){
    uint8 (* fun)() = funtype;
    uint8 num = fun();
    return num;
}
uint8 get_device_type() { return get_flash_1byte(get_device_type_flash); }

int main(int argc, char const *argv[])
{
    uint8 num = get_device_type();
    printf("res: %d \n", num);
    return 0;
}

 

C 语言中的指针函数写法

标签:turn   style   div   color   define   col   rgb   int   har   

原文地址:https://www.cnblogs.com/han-guang-xue/p/14953187.html

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