C语言可以用到的单词(国外英文资料).doc

  1. 1、本文档共9页,可阅读全部内容。
  2. 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
  3. 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载
  4. 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
C语言可以用到的单词(国外英文资料)

C语言可以用到的单词(国外英文资料) You cant change people, but you can change yourself. You cant change the weather, but you can change your mood. You cant change the length of your life, but you can expand it. The first keyword: auto Used to declare automatic variables. You can explicitly declare variables as automatic variables. As long as the variable is not declared before all functions, the default is automatic, even if there is no auto keyword. And it only works in the function that declares it. And when it is done, its value is automatically restored to its original value. The automatic variable is used when it is used because it contains unknown values. Example: auto int name = 1; The second keyword: static Used to declare static variables. You can explicitly declare variables as static variables. Its also a local variable. It only works in the function that declares it. Its life cycle starts from the program and ends with the program. And even after its done, its value is still unrecovered. Even if you do not assign a value to a static variable, it will automatically initialize itself to 0. Third key word: extern Used to declare global variables. It also states that the variables before the main function are called global variables. It can be used anywhere in the program. Its always there during the program run. Global variables are also initialized to 0. The fourth keyword: register Used to declare a register variable. It is also a local variable, only valid for the function that declares it. It is stored in registers. Its much faster. Using it for variables that need to be used frequently will make the program run faster. Example: register int name = 1; The fifth keyword: int Used to declare the type of variable. Int for integers. Note that the scope is different in 16 and 32-bit systems. Two bytes in 16 bits. Four bytes in 32-bit. There is also an explicit declaration of unsigned or signed: unsigned int signed int. The difference between the symbol and the unsigned is

文档评论(0)

f8r9t5c + 关注
实名认证
内容提供者

该用户很懒,什么也没介绍

版权声明书
用户编号:8000054077000003

1亿VIP精品文档

相关文档