結構體、函數指針

#include <stdio.h> #include <stdlib.h> void study(){ printf("吃飯睡覺打豆豆\n"); } //定義一個結構體 struct student{ int age; int height; char sex; //結構體中不能定義函數,但能夠定義函數指針 void (*studyP)(); }; main(){
相關文章
相關標籤/搜索