首页 > 编程语言 > 详细

C语言结构体嵌套

时间:2014-01-23 20:28:41      阅读:404      评论:0      收藏:0      [点我收藏+]
bubuko.com,布布扣
#include <stdio.h>

int main()
{
    /***************************************************
     *结构体嵌套:结构体里面包含结构体
     *
     *注意:被包含的结构体要先定义,结构体不能包含自己
     ****************************************************/
     struct Date
     {
         int year;
         int month;
         int day;
     };
     struct Student
     {
         int no;
         struct Date birthday;
     };
     struct Student student =
     {
             1,
             {1989, 2, 4}
     };
     printf("no = %d, birthday = %d年%d月%d日 \n", student.no,
               student.birthday.year, student.birthday.month, student.birthday.day);
     return 0;
}
bubuko.com,布布扣
no = 1, birthday = 1989年2月4日 

C语言结构体嵌套

原文:http://www.cnblogs.com/heml/p/3530970.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!