代码拉取完成,页面将自动刷新
#include <stdio.h>
struct info
{
int age;
char name[20];
} Info;
struct student
{
struct info info;
int score;
void (*display)(struct student *s);
};
void introduce(struct student *s)
{
printf("Hello,I am %s.\n", s->info.name);
printf("I am %d years old.\n", s->info.age);
printf("My score is %d.\n", s->score);
}
int main(int argc, char const *argv[])
{
struct student s =
{
18, "Mary", 89};
struct student *pStu = &s;
pStu->display = introduce;
pStu->display(pStu);
return 0;
}
结果:
Hello,I am Mary
I am 18 years old
My score is 89
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。