for example 5. Range of numbers in ascii table For example you ask the user his age. 29 is ascii value 2 and ascii value 9 Subtract the ascii value of 2 from offset Second part of your hw3. xtoi()"> for example 5. Range of numbers in ascii table For example you ask the user his age. 29 is ascii value 2 and ascii value 9 Subtract the ascii value of 2 from offset Second part of your hw3. xtoi()">

Presentation is loading. Please wait.

Presentation is loading. Please wait.

Homework Finishing Chapter 2 of K&R. We will go through Chapter 3 very quickly. Not a lot is new. Questions?

Similar presentations


Presentation on theme: "Homework Finishing Chapter 2 of K&R. We will go through Chapter 3 very quickly. Not a lot is new. Questions?"— Presentation transcript:

1 Homework Finishing Chapter 2 of K&R. We will go through Chapter 3 very quickly. Not a lot is new. Questions?

2 Type Conversion /* atoi: convert character string of digits to int (base 10) */ int atoi(char s[ ]) /* name based on “ascii to integer” */ { int i, n; n = 0; for (i=0; s[i] >= '0' && s[i] <= '9'; ++i) /* "is a digit" */ n = 10*n + (s[i] - '0'); /* s[i]-'0' is char add to 10*n is int */ return n; } Show the ascii table again -> for example 5. Range of numbers in ascii table For example you ask the user his age. 29 is ascii value 2 and ascii value 9 Subtract the ascii value of 2 from offset Second part of your hw3. xtoi()

3 Type Conversion /* itoa: convert int n to characters in base 10 in array s */ void itoa (int n, char s[ ]) { int i, sign; if ((sign = n) < 0) /* record sign */ n = -n; /* make n positive */ i = 0;

4 Type Conversion /* generate digits in reverse order */
do { /* new loop type */ s[i++] = n % 10 + '0'; /* generate next digit */ /* what conversion takes place here? */ } while(( n /= 10) > 0); /* delete digit from end of int */ if (sign < 0) s[i++] = '-'; s[i] = '\0'; reverse (s); /* reverse digit string */ } I should add the offset to print it correctly Like itox() in your homework -> the remainder could be 10,11,…,15 so you should convert them to a,b,c,…,f

5 Convert Upper Case to Lower
int tolower(int c) /* this is function tolower(int c) in C library. To use it, you need to #include <ctype.h> (see K&R App. B2) */ { if (c >= 'A' && c <= 'Z') return c – ‘A’ + ‘a’; /* c - 'A' is the offset number... */ /* c -'A'+'a' is the corresponding lower case letter*/ else return c; } Defining the range between A and Z

6 Declarations and Initialization Section 2.4.
int x, a[20]; /* external vars, initialized to zero */ int w = 37, v[3] = {1, 2, 3}; /* happens once */ main ( ) func ( ) /* entered 1000 times per second */ { int y, b[20]; /* automatic -- contains junk on entry */ int s = 37, t[3] = {1, 2, 3}; /* happens on each entry */ } All the variables automatically initialized to zero except local automatic -> between curly braces spaces

7 C language Characteristics
C language never does a possibly significant amount of work without this being specified by the programmer Initialization is not done unless programmer codes it in a way that causes the initialization to be done When you want the program to do something You should very explicitly tell it what you want to do

8 Type Conversions -Casts K&R Sect 2.7
char c1, c2 = 15; int j = 2379; /* = 0x b */ float g = 12.1; printf ("%d\n", c2 + j); /* what type, what printed ? */ ( int, = 2394 ) c1 = j; /* what type, value of c1? */ ( char, 2379 % 256 = 75 ) printf ("%d\n", c1 + c2); /* what type, value printed? */ ( char, 90 ) Float -> 4 bytes It always cast or change the one that has the smallest storage to the biggest one before operation. 1. So here C first convert c2 to a 32bit int number and then perform the add 2. In the other hand it just uses the 8 lowest significant bits

9 Casts K&R Sect 2.7 printf ("%d\n", (char) j + c2); /* value? */ ( 90 )
printf ("%9.1f\n", j + g); /* type, value? */ ( float, = ) printf ("%d\n", j + (int) g); /* type, value? */ ( int, = 2391 ) Convert integer to floating point first before addition

10 Type Conversion Rules Precise conversion rules in Section 6 of Appendix A If either operand is long double, convert the other to long double Otherwise if either operand is double, convert the other to double Otherwise if either operand is float, convert the other to float Otherwise, convert char and short to int Then if either operand is long, convert the other to long It’s the default one. When you didn’t explicitly cast a variable Always converts to the higher precision one

11 Increment / Decrement Operators Section 2.8.
Both ++n and n++ have effect of n = n + 1; Both --n and n-- have effect of n = n – 1; With ++n or --n in an expression n is incremented/decremented BEFORE being used With n++ or n-- in an expression value is used THEN n is incremented/decremented int arr[4] = {1, 2, 3, 4}, n = 2; printf("%d\n", arr[n++]); /* values printed? */ printf("%d\n", arr[--n]); printf("%d\n", arr[++n]); 3 3 4

12 Evaluation Order and Precedence
For most operations, the order of evaluation is determined by precedence Exceptions: Pre- increment and decrement operators are always evaluated before their operand is considered Post- increment and decrement operators are always evaluated after their operand is considered

13 Increment / Decrement Operators
Precedence, pg. 53, specifies the binding order, not the temporal order. Consider two statements: n = 5; m = n-- + 7; In second statement, binding is: m = ((n--) + 7); But value of n-- is evaluated last Uses value 5 for n in evaluation of the expression The value of n is not decremented to 4 until the ENTIRE EXPRESSION has been evaluated (in this case, the right side of assignment statement) Temporal order of execution is not specified by binding order of operators in precedence table

14 Increment / Decrement Operators
Hard to predict sometimes, you need to experiment n = 3; n = (n++)*(n++); Do we get 3*3+1+1 = 11? It might be different on different machines, so don't do this! With "gcc" we get result 9!   Another example: printf ( "%d %d\n", ++n, n); ??? Unclear what is printed out. Which expression is evaluated first?

15 Bit-wise Operators Section 2.9
We’ve already covered these, but they can be difficult when using them for first time Bit-wise Operators & bit-wise AND | bit-wise inclusive OR ^ bit-wise exclusive OR ~ one’s complement << left shift >> right shift

16 Difference between the bit wise operator & and logical operator &&
Example int a =0xf, b= 0xab, c, d; c = a & b; d = a && b; c = 0xb d = 0x1 because it is true True True

17 Bit-wise Operators Masking is the term used for selectively setting some of the bits of a variable to zero & is used to turn off bits where “mask” bit is zero n = n & 0xff resets all except 8 LSBs to zero | is used to turn on bits where “mask” bit is one N = n | 0xff sets all LSBs to one

18 Bit-wise Operators Other tricks with bit-wise operators:
^ can be used to zero any value n = n ^ n sets value of n to zero ~ can be used to get the negative of any value n = ~n + 1 sets value of n to –n (2’s complement)

19 Get a Group of Bits Get a bit field of n from position p in value (put in least significant bits with zeros above) unsigned getbits(unsigned x, int p, int n) { return (x >> (p+1-n)) & ~(~0 << n)); } 7 6 5 4 3 2 1 Position p n Bits N=3 Shift all the bits to right to the last position of n bits and then mask everything after them

20 Assignment Operators Section 2.10.
expr1 op = expr2 means expr1 = (expr1) op (expr2) i += 3 means i = i + 3; We can also use other operators int i = 3; i += 3; /* value now? */ ( 6) i <<= 2; /* value now? */ (24) i |= 0x02; /* value now? */ (24 = 0x1, x18 | 0x02 = 0x1a)

21 K&R Exercise 2-9 Find how many 1’s in a binary number?
Use the expression to set the rightmost 1-bit to a 0 x &= (x-1) Repeat until x is all zeros char x = 0xa4 has bits (three 1-bits) x = x = & x & x x = & x Bits all counted What about char x = 0? Number of times If the number is zero, you should not use this algorithm Write exeption codes for this conditins

22 Conditional Expressions Section 2.11
Example: To implement z = max(a, b) if (a > b) z = a; else z = b; As long as both sides of if statement set only one variable value, it can be written: z = (a > b)? a: b; Ternary condition

23 Conditional Expressions
Can also nest conditionals: z = (a > b)? a: ((x < y)? b: 0); Can include conditions inside an expression (e.g. to print EOL every 10th value or at end): for (i = 0; i < n; i++) printf(“%6d%c”, a[i], (i%10 = = 9 || i = = n-1) ? ‘\n’ : ‘ ’);


Download ppt "Homework Finishing Chapter 2 of K&R. We will go through Chapter 3 very quickly. Not a lot is new. Questions?"

Similar presentations


Ads by Google