摘要: 使用结构体: 1 #include <stdio.h> 2 3 struct person 4 { 5 char *name; 6 int age; 7 char *work; 8 void (*printInfo)(struct person *per);//函数指针 9 }; 10 11 voi 阅读全文
posted @ 2019-12-10 22:29 夜空的北极星 阅读(319) 评论(0) 推荐(0) 编辑