码迷,mamicode.com
首页 > 其他好文 > 详细

结构体嵌套

时间:2015-06-27 00:05:20      阅读:102      评论:0      收藏:0      [点我收藏+]

标签: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;

结构体嵌套

标签:c语言

原文地址:http://wangjiafu.blog.51cto.com/10435098/1665962

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!