ImageVerifierCode 换一换
格式:PPT , 页数:26 ,大小:1,003KB ,
资源ID:372888      下载积分:2000 积分
快捷下载
登录下载
邮箱/手机:
温馨提示:
如需开发票,请勿充值!快捷下载时,用户名和密码都是您填写的邮箱或者手机号,方便查询和重复下载(系统自动生成)。
如填写123,账号就是123,密码也是123。
特别说明:
请自助下载,系统不会自动发送文件的哦; 如果您已付费,想二次下载,请登录后访问:我的下载记录
支付方式: 支付宝扫码支付 微信扫码支付   
注意:如需开发票,请勿充值!
验证码:   换一换

加入VIP,免费下载
 

温馨提示:由于个人手机设置不同,如果发现不能下载,请复制以下地址【http://www.mydoc123.com/d-372888.html】到电脑端继续下载(重复下载不扣费)。

已注册用户请登录:
账号:
密码:
验证码:   换一换
  忘记密码?
三方登录: 微信登录  

下载须知

1: 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。
2: 试题试卷类文档,如果标题没有明确说明有答案则都视为没有答案,请知晓。
3: 文件的所有权益归上传用户所有。
4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
5. 本站仅提供交流平台,并不能对任何下载内容负责。
6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。

版权提示 | 免责声明

本文(C Programming.ppt)为本站会员(李朗)主动上传,麦多课文库仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对上载内容本身不做任何修改或编辑。 若此文所含内容侵犯了您的版权或隐私,请立即通知麦多课文库(发送邮件至master@mydoc123.com或直接QQ联系客服),我们立即给予删除!

C Programming.ppt

1、C Programming,Lecture 5,Precedence and Associativity of Operators,Rules of associativity and precedence of operators determine precisely how expressions are operated. In the expression 1 + 2 * 3, the operator * has higher precedence than +, causing the multiplication to be performed first. The resul

2、t is 7 instead of 9.,Associativity of Operators,When two operators placed in proximity in an expression have the same precedence, their associativity is used to determine how the expression is evaluated. In the expression 6 / 2 * 3, both / and * have the same precedence. Since they both have left to

3、 right associa-tivity, the expression has the value 9 rather than 1.,Partial Table of Operator Precedence and Associativity,Operator Associativity,() + (postfix) - (postfix) left to right+(unary) -(unary) +(prefix) -(prefix) right to left* / % left to right+ - left to right= += -= right to leftOpera

4、tors on the top line have the highest precedence.Precedence decreases line-by-line going down the table.All operators on the same line have equal precedence.,Parentheses and the Order of Operations,Expressions inside parentheses are evaluated first. This provides for the use of parentheses to clarif

5、y or change the order in which operations are performed.1 + 2 * 3 has a value of 7.(1 + 2)* 3 has a value of 9.,Binary Plus versus Unary Plus,Both binary plus and unary plus are represented by a + (plus sign). The same is true of binary and unary - (the minus sign). Unary + and - have a higher prece

6、dence that binary + and - and the unary operators associate right-to-left instead of left-to-right.,Example of Unary Operators,In the expression - a * b - c the first minus is unary and the second is binary. We can use parentheses to write an equivalent expression that is less likely to be misinterp

7、reted.(- a) * b) - c,Example of Unary Operators Using Numbers,-1 * 2 - 3 has a value of -5 it is equivalent to(-1) * 2) - 3 or (-2) - 3which is -5 it is not equivalent to(-1) * (2 - 3) or (-1) * (-1)which is +1,Increment and Decrement Operators,+ (the increment operator) and - (the decrement operato

8、r) are unary operators with the same precedence and right-to-left associativity as the other unary operators. The + and - operators can occur in either a prefix or postfix position with different results.,Prefix versus Postfix When Using Increment and Decrement Operators,Each of the expressions +i a

9、nd i+ causes the stored value of i to be incremented by 1, however: The expression +i causes the stored value of i to be incremented first, with the expression then taking as its value the new stored value of i. The expression i+ has as its value the current value of i; then the stored value is incr

10、emented.,Example of the Increment and Decrement Operators,int a, b, c = 0; a = +c; b = c+; printf(“%d %d %dn”, a, b, +c);/* 1 1 3 is printed */c is incremented making its value 1.The result assigned to a making its value 1.The value of c is assigned to b making its value 1.Then c is incremented maki

11、ng its value 2.Finally, c is incremented before it is printed, making its value 3.,Practice with Operators and Expressions,Declarations and Initializations,int a = 1, b = 2, c = 3, d = 4;,Expression Equivalent expression Valuea * b / c (a * b) / c 0a * b % c + 1 (a * b) % c) + 1 3+a * b - c - (+a) *

12、 b) - (c-) 17 - -b * +d 7 - (-b) * (+d) 17,Partial Table of Operator Precedence and Associativity,Operator Associativity,() + (postfix) - (postfix) left to right+(unary) -(unary) +(prefix) -(prefix) right to left* / % left to right+ - left to right= += -= right to leftOperators on the top line have

13、the highest precedence.Precedence decreases line-by-line going down the table.All operators on the same line have equal precedence.,Assignment Operators,C treats = as an operator. Its precedence is lower than almost all of the other operators. Its associativity is right to left.,Form of an Assignmen

14、t Expression,A simple assignment expression is of the form variable = right_side The value of right_side is assigned to variable, and that becomes the value of the assignment expression as a whole.,Assignment Expressions versus Assignment Statements,An assignment expression has no semicolon at the e

15、nd. An assignment statement does. We can use assignment expressions to condense a sequence of assignment statements.,Example of Equivalent Code Using Assignment Expressions,Assignment statementsb = 2;c = 3;a = b + c; Equivalent statement using assignment expressionsa = (b = 2) + (c = 3); Note the as

16、signment statement ends with a semicolon, the expressions dont.,Other Assignment Operators,C has operators that combine assignment with other operations. These are considered assignment operators and have the same precedence and right-to-left associativity as =. Example k = k + 2; is equivalent to k

17、 += 2;,The Assignment Operators,= += -= *= /= %= = = &= = |= The semantics of the other assignment operators is specified byvariable op= expressionwhich is equivalent tovariable = variable op (expression)j *= k + 3 is equivalent to j = j * (k + 3)and notj = j * k + 3,Preprocessor Directives,Include

18、files (header files) #include Causes the preprocessor to look for filename in system defined places and replace the #include line with a copy of contents of filename. #include “filename” Same as above, but the preprocessor looks in the current directory before looking in the system defined directory

19、 locations.,Where are these “System Defined” Places?,On UNIX systems, the standard header files such as stdio.h can typically be found in the directory /usr/include. You can use any editor to look at what is in these files.,Header Files Must be Included for Functions in the Standard Library,The syst

20、em knows where to find the code for functions in the standard library. However, it is the responsibility of the programmer to include the header files that provide the prototypes for library functions.,The Libraries versus the Header Files,The standard library contains object code (already compiled

21、library functions). The standard header files are text files that you can read using a text editor. They provide information needed by the library functions.,Style,Do not condense code just for the sake of using less spacey = 2;z = 3;x = y + z; is more readable thanx = (y = 2) + (z = 3); anda += 7;

22、versus a = a + 7; is a matter of choice.,Common Programming Errors,Warning and Error Messages usually refer to a line number. The problem may be prior to that line - such as not properly closing a comment or a string constant.,System Considerations,ANSI C has both a unary + and a unary - Traditional C has only unary -, so you should not use the unary + operator if your are writing code that needs to be portable to a machine that uses traditional C. If you are writing code for a spectrum of systems, limitations of all of the systems must be respected.,

copyright@ 2008-2019 麦多课文库(www.mydoc123.com)网站版权所有
备案/许可证编号:苏ICP备17064731号-1