结构struct与函数

结构变量也可作为函数的实参传递。函数指针也可作为结构体的成员。

#include <stdio.h>
/*
时间:2022-05-11 19:58
作者:sgbl888
功能:结构与函数
知识点:
    1、结构变量可作为函数的参数
    2、函数指针也可作为结构体的成员
    3、
*/

struct Student{
    char name[20];
    int num; //学号
    float score; //成绩
    void (*sty)(const char *name, const char *kc); //函数指针作为成员
};

void study(const char *name, const char *kc){
    printf("%s 正在学习《%s》课程\n", name, kc);
}

void pinfo(struct Student *st){
    printf("姓名:%s\n", (*st).name);
    printf("学号:%d\n", st->num);
    printf("成绩:%f\n", st->score);
}
int main(){
    //定义结构变量st1
    struct Student st1 = {
        "张三",
        100112,
        68.5
    };
    //把结构变量取地址传给pinfo函数
    pinfo(&st1);

    //调用结构成员
    st1.sty = study; //函数指针
    st1.sty(st1.name, "C语言程序设计");

    return 0;
}

运行结果:

姓名:张三
学号:100112
成绩:68.500000
张三 正在学习《C语言程序设计》课程

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值