- 1、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。。
- 2、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 3、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
- 4、该文档为VIP文档,如果想要下载,成为VIP会员后,下载免费。
- 5、成为VIP后,下载本文档将扣除1次下载权益。下载后,不支持退款、换文档。如有疑问请联系我们。
- 6、成为VIP后,您将拥有八大权益,权益包括:VIP文档下载权益、阅读免打扰、文档格式转换、高级专利检索、专属身份标志、高级客服、多端互通、版权登记。
- 7、VIP文档为合作方或网友上传,每下载1次, 网站将根据用户上传文档的质量评分、类型等,对文档贡献者给予高额补贴、流量扶持。如果你也想贡献VIP文档。上传文档
查看更多
ch12 英文讲义
Linux+ Guide to Linux Certification, Second Edition A First Book of ANSI C, Fourth Edition A First Book of ANSI CFourth Edition Chapter 12 Structures Objectives Single Structures Arrays of Structures Passing and Returning Structures Unions (Optional) Common Programming and Compiler Errors Introduction Each data item listed in Figure 12.1 is an entity by itself, called a data field Together, all the data fields form a single unit called a record In C, a record is referred to as a structure Introduction (continued) Introduction (continued) A structure’s form consists of the symbolic names, data types, and arrangement of individual data fields in the record The structure’s contents consist of the actual data stored in the symbolic names Introduction (continued) Single Structures Structure definition in C: struct { int month; int day; int year; } birth; Reserves storage for the individual data items listed in the structure The three data items are the members of the structure Assigning actual data values to the data items of a structure is called populating the structure Single Structures (continued) Multiple variables can be defined in one statement struct {int month; int day; int year;} birth, current; Common to list the form of the structure with no following variable names The list of structure members must be preceded by a user-selected structure type name struct Date { int month; int day; int year; }; Single Structures (continued) Initialization of structures follows the same rules as for the initialization of arrays: struct Date birth = {12, 28, 1987}; Structure members can be of any data type struct PayRecord { char name[20]; int idNum; double regRate; double otRate; }; struct PayRecord employee = {H. Price, 12387, 15.89, 25.50}; Single Structures (continued) Advantage of structures is when the same structure type is used in a list many times Individual members can be arrays and structures struct { char name[20]; struct Date birth; } per
您可能关注的文档
最近下载
- 2025年森林防火道路建设项目可行性研究报告.docx
- Q-CR 803-2020高速铁路无砟道床伤损评定.pdf VIP
- 2024年保卫管理员职工职业技能大赛理论考试题库500题(含答案).docx VIP
- 干砌石体砌筑.doc VIP
- 2025高中信息技术课标.docx
- (完整版)工业机器人文献综述.pdf VIP
- 萧宏慈医行天下拍打拉筋实用手册简体版.ppt VIP
- 安装工程计量与计价 第2版李海凌习题答案.pdf VIP
- 2025版二级建造师《机电工程管理与实务》考点默写本.pdf VIP
- Unit2 Travelling around the world 单元词汇句型(含答案解析)-2025年沪教版七年级英语下册重点题型专练.pdf VIP
文档评论(0)