标签:c语言
例如,结构体嵌套框架
typedef struct STD{ int chinese; int math; int english; float average;}student; typedef struct NODE{ char name[10]; student std; struct NODE *last; struct NODE *next;}node;
结构体嵌套
原文地址:http://wangjiafu.blog.51cto.com/10435098/1665962