例如,结构体嵌套框架
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