- 1、本文档共30页,可阅读全部内容。
- 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
第五章结构体与共用体
第5章 结构体与共用体;*;*;struct student
{ int num;
char name[20];
char sex;
int age;
float score;
char address[50];
};;先声明结构体类型再定义结构体变量
struct student
{ int num;
char name[20];
char sex;
int age;
float score;
char address[50];
};
struct student stu1,stu2;
;声明结构体类型的同时定义结构体变量
struct student
{ int num;
char name[20];
char sex;
int age;
float score;
char address[50];
}stu1,stu2;
;直接定义结构体变量
struct
{ int num;
char name[20];
char sex;
int age;
float score;
char address[50];
} stu1,stu2;
;说明:
类型与变量名是不同的概念;
对结构体的成员的使用与普通变量类似;
结构体的成员也可以是另一个结构体;
struct student
{ int num;
char name[20];
char sex;
struct date birthday;
float score;
char address[50];
};
成员名可以与程序中的其它变量同名。;
(2) 结构体变量的初始化
变量初始化具体形式:
struct 结构体类型名
{
类型说明符1 成员名1;
类型说明符2 成员名2;
…
类型说明符3 成员名3;
} 变量名列表={ 初始化数据 };; (2) 结构体变量的初始化
例5-1 对结构体变量初始化。
void main()
{ struct student /*定义结构体*/
{ int num;
char name[25];
char sex; int age;
float score; char addr[35];
}student2,student1={102, “zhang ping, M, 18,85.5, shanghai};
student2=student1;
printf(Number=%d\nName=%s\n,student2.num,
student2.names);
printf(Sex=%c\nScore=%f\n,student2.sex,
student2.scores);
}; (3) 结构体变量的引用
struct student
{ int num;
char name[20];
char sex;
int age;
fl oat score;
char address[50];
}stu1,stu2;
stu1.num=10021;
strcpy(stu1.name, Xiao hua);
stu1.age=18;
stu1.score=85.5
…; struct student
{ int num;
char name[20];
char sex;
struct date
{ int year;
int month;
int day;
}birthday;
float score;
char address[50];
}stu;
…
stu.birthday.year=2000;
…;*;*;*;num;b.结构体数组初始化
struct student
{ int num;
char name[20];
char sex;
int age;
float score;
char address[50];
}stu[3]={{1001,Li Nin, M, 14, 79, 103 Beijing Road },{1002, , Zhang Fan, M, 15, 80, 46 Tangshan Road },{1003, Wang Ying, F, 14, 86, 10 Zhongshan Road }};; 例5.2 由键盘输入学生信息,并将其输出。
#include stdio.h
void main()
您可能关注的文档
- 第二章节节马克思主义中国化理论成果精髓.ppt
- 第二章金融机构与金融市场0304_05.ppt
- 第二章顺序存储结构的线性表-习题课.ppt
- 第二章键盘与输入法.ppt
- 第二章运放及应用.ppt
- 第二章节随机变量、其分布.ppt
- 第二章:应用文的作者、文本与读者.ppt
- 第二章面向过程程序设计概述.ppt
- 第二节 细胞多样-统一.ppt
- 第二节 消化-汲取.ppt
- 人教版九年级英语全一册单元速记•巧练Unit13【速记清单】(原卷版+解析).docx
- 人教版九年级英语全一册单元速记•巧练Unit9【速记清单】(原卷版+解析).docx
- 人教版九年级英语全一册单元速记•巧练Unit11【速记清单】(原卷版+解析).docx
- 人教版九年级英语全一册单元速记•巧练Unit14【单元测试·提升卷】(原卷版+解析).docx
- 人教版九年级英语全一册单元速记•巧练Unit8【速记清单】(原卷版+解析).docx
- 人教版九年级英语全一册单元速记•巧练Unit4【单元测试·提升卷】(原卷版+解析).docx
- 人教版九年级英语全一册单元速记•巧练Unit13【单元测试·基础卷】(原卷版+解析).docx
- 人教版九年级英语全一册单元速记•巧练Unit7【速记清单】(原卷版+解析).docx
- 苏教版五年级上册数学分层作业设计 2.2 三角形的面积(附答案).docx
- 人教版九年级英语全一册单元速记•巧练Unit12【单元测试·基础卷】(原卷版+解析).docx
文档评论(0)