typedef struct student 和 struct student 的區別

typedef struct student {  int num;  struct student *next; }student; struct student {  int num;  struct student *next; }; string 第二個struct student是定義了一個student結構體, 第一個是用typedef 把 struct student 這個結構體類型
相關文章
相關標籤/搜索