Presentation is loading. Please wait.

Presentation is loading. Please wait.

010.133 Digital Computer Concept and Practice Copyright ©2012 by Jaejin Lee C Language Part 4.

Similar presentations


Presentation on theme: "010.133 Digital Computer Concept and Practice Copyright ©2012 by Jaejin Lee C Language Part 4."— Presentation transcript:

1 010.133 Digital Computer Concept and Practice Copyright ©2012 by Jaejin Lee C Language Part 4

2 010.133 Digital Computer Concept and Practice Copyright ©2012 by Jaejin Lee Pointers (revisited) int i = 4, j = 6, *p = &i, *q = &j, *r; if (p == &i)...; if (p == (& i))...;... = **&p;... = *(*(& p));... = 9 * *p / *q + 8;... = (((9*(*p)))/(*q)) + 8; *(r = &i) *= *p; (* (r = (& j))) *= (* p);

3 010.133 Digital Computer Concept and Practice Copyright ©2012 by Jaejin Lee Pointers (contd.) int *p; float *q; void *v; /* void*: generic pointer type */ p = 0; p = v = q; p = (int *) 3; p = (int *) q;

4 010.133 Digital Computer Concept and Practice Copyright ©2012 by Jaejin Lee Pointers as Function Arguments Suppose we want to make a function that returns the maximum and the minimum of three integers a, b, and c We cannot pass the results with the return mechanism of the function because we need to return two values Use pointers The code in the next slide shows such a function We can call it by maxmin(a, b, c, &max, &min);

5 010.133 Digital Computer Concept and Practice Copyright ©2012 by Jaejin Lee Pointers as Function Arguments (contd.) void maxmin(int a, int b, int c, int *pmax, int *pmin) { if (a >= b) { if (a >= c) { /* a is maximum */ *pmax = a; if (b >= c) *pmin = c; else *pmin = b; } else { /* c > a >= b */ *pmax = c; *pmin = b; } } else { if (b >= c) { /* b is maximum */ *pmax = b; if (a >= c) *pmin = c; else *pmin = a; } else { /* c > b > a */ *pmax = c; *pmin = a; }

6 010.133 Digital Computer Concept and Practice Copyright ©2012 by Jaejin Lee Swap Function #include void swap(int*, int*); int main(void) { int x = 4, y = 5; swap( &x, &y ); printf(“%d %d\n”, x, y); return 0; } void swap( int *p, int *q ) { int tmp; tmp = *p; *p = *q; *q = tmp; } #include void swap(int, int); int main(void) { int x = 4, y = 5; swap( x, y ); printf(“%d %d\n”, x, y); return 0; } void swap( int p, int q ) { int tmp; tmp = p; p = q; q = tmp; }

7 010.133 Digital Computer Concept and Practice Copyright ©2012 by Jaejin Lee Pointers and Arrays An array name is actually a constant pointer Its value cannot be changed When x is an array, x[i] is the same as *(x + i) When p is a pointer, *(p + i) is the same as p[i] #define N 100 int a[N], i, *p, sum = 0; for(p = a; p < &a[N]; p++) sum += *p; for(i = 0; i < N; i++) sum += *(a + i); for(p = a, i = 0; i < N; i++) sum += p[i];

8 010.133 Digital Computer Concept and Practice Copyright ©2012 by Jaejin Lee Pointer Arithmetic If p is a pointer to a particular type, the expression p + 1 gives the address for the storage of the next variable of that type double a[10], *p, *q; p = a; /* p points to the first element of a */ q = p + 2; /* q points to the third element of a */ printf(“%d\n”, q – p) /* q - p is 2 */ printf(“%d\n”, (int) q – (int) p) /* 16 */

9 010.133 Digital Computer Concept and Practice Copyright ©2012 by Jaejin Lee Arrays as Function Arguments The base address of the array is passed to the function double sum(double x[], int n) /* ≡ double sum(double *x, int n) */ { int i; double sum = 0.0; for (i = 0; i < n; i++) sum += x[i]; return sum; } double y[ 100 ]; … sum(y, 100); sum(y, 20); sum(&y[10], 20); sum(y + 10, 20);

10 010.133 Digital Computer Concept and Practice Copyright ©2012 by Jaejin Lee Arrays and Strings A character array can be initialized with a string constant when it is declared char str[12] = “programming”; The length of str should be the number of characters in the string constant plus 1 The last byte contains the null character The length of the array in the example above may be omitted char str[] = “programming”; 12 bytes are assigned to str by the compiler

11 010.133 Digital Computer Concept and Practice Copyright ©2012 by Jaejin Lee Arrays and Strings (contd.) If there is no room for the null character as in the example below, carr cannot have a terminating null character and it is not a string char carr[11] = “programming”; It is an array of characters The conversion specification for a string in both printf and scanf is %s

12 010.133 Digital Computer Concept and Practice Copyright ©2012 by Jaejin Lee String Constants String constants are written between double quotes Treated as a pointer The value is the base address of the string char *p = “abc”; printf(“%s %s\n”, p, p+1); “abc”[2] *(“abc” + 2) char s[] = “abc”; char s[] = { ‘a’, ‘b’, ‘c’, ‘\0’ };

13 010.133 Digital Computer Concept and Practice Copyright ©2012 by Jaejin Lee String Pointers Consider the following declarations: char str[] = “programming”; char *pstr = “programming”; The first one declares a string variable str, i.e., an array of characters We can modify the characters in str str[3] = ‘t’; The second one declares a pointer variable pstr, which points to a string constant We may modify the pointer itself, but may not modify characters in the string constant

14 010.133 Digital Computer Concept and Practice Copyright ©2012 by Jaejin Lee Pointer Arrays Suppose we want to store an array of strings such as country names The best way is to use an array of pointers char *pcountry[] = {“Korea”, “China”, “Japan”, “U.S.A.”, “Russia”}; Then pcountry[0] is a pointer that points to “Korea”, pcountry[1] is a pointer to “China”, etc.

15 010.133 Digital Computer Concept and Practice Copyright ©2012 by Jaejin Lee Simple Cryptosystem A cryptosystem consists of an encryption function and a decryption function The encryption function gets a plaintext and a key, and produces a ciphertext The decryption function gets a ciphertext and a key, and produces a plaintext If the decryption key is the same as the encryption key, the decryption function should produce the original plaintext

16 010.133 Digital Computer Concept and Practice Copyright ©2012 by Jaejin Lee Simple Cryptosystem (contd.) The Shift Cipher is one of the simple cryptosystems In fact, it is too simple to be secure, but it was actually used in history Assume that plaintexts and ciphertexts are strings of lowercase alphabet letters The key is an integer k between 0 and 25

17 010.133 Digital Computer Concept and Practice Copyright ©2012 by Jaejin Lee Simple Cryptosystem (contd.) The encryption function shifts each letter of the plaintext to the right by k positions (modulo 26) For example, if the key is 3, each letter of the plaintext is changed to a ciphertext letter as shown in the table below plaintextabcdefghijklmnopqrstuvwxyz ciphertextdefghijklmnopqrstuvwxyzabc

18 010.133 Digital Computer Concept and Practice Copyright ©2012 by Jaejin Lee Simple Cryptosystem (contd.) If the plaintext is “hello” and the key is 3, the ciphertext becomes “khoor” The decryption function shifts each letter of the ciphertext to the left by k positions (modulo 26)

19 010.133 Digital Computer Concept and Practice Copyright ©2012 by Jaejin Lee Encryption Function #include #define SMAX 100 #define KMOD 26 void EncShift(char ptext[], char ctext[], int key) { int i=0; while (ptext[i] != '\0') { ctext[i] = (ptext[i]-'a'+key) % KMOD + 'a'; i++; } ctext[i] = '\0'; } int main(void) { char ptext[SMAX], char ctext[SMAX]; int key; printf("Enter plaintext: "); scanf("%s", ptext); printf("Enter key: "); scanf("%d", &key); EncShift(ptext, ctext, key); printf("Ciphertext: %s\n", ctext); return 0; }

20 010.133 Digital Computer Concept and Practice Copyright ©2012 by Jaejin Lee File I/O In C, a stream is a source of input or a destination of output A text stream is a sequence of lines and each line has zero or more characters and is terminated by ‘\n’

21 010.133 Digital Computer Concept and Practice Copyright ©2012 by Jaejin Lee File I/O (contd.) provides three standard streams stdin (standard input): keyboard stdout (standard output): screen stderr (standard error): screen Printf gets input from stdin, and scanf sends output to stdout C also provides two simple I/O functions: int getchar(void) Reads the next character from stdin and returns it int putchar(int c) Prints character c into stdout

22 010.133 Digital Computer Concept and Practice Copyright ©2012 by Jaejin Lee File I/O (contd.) Instead of standard input and output, a program can access a file for its input and output A file pointer (stream) that points to a file (whose type is FILE) FILE *fp;

23 010.133 Digital Computer Concept and Practice Copyright ©2012 by Jaejin Lee File I/O Operations FILE *fopen(const char *filename, const char *mode) Opens the filename file and returns a file pointer, or it returns NULL if the filename file does not exist The modes for text files are, “r” open for reading (the file must exist) “w”open for writing (discard previous contents if any) “a”open for appending (the file is created if it does not exist) “r+”open for reading and writing (the file must exist) “w+”open for reading and writing (discard previous contents if any) “a+”open for reading and appending (the file is created if it does not exist)

24 010.133 Digital Computer Concept and Practice Copyright ©2012 by Jaejin Lee File I/O Operations (contd.) int fclose(FILE *stream) Closes stream int fgetc(FILE *stream) Returns the next character of stream, or EOF if end of file or error occurs int fputc(int c, FILE *stream) Writes character c on stream char *fgets(char *s, int n, FILE *stream) Reads at most the next n-1 characters into array s, stops if a newline is encountered (the newline is included in s) Returns s, or NULL if end of file or error occurs

25 010.133 Digital Computer Concept and Practice Copyright ©2012 by Jaejin Lee File I/O operations (contd.) int fputs(const char *s, FILE *stream) Writes string s (which need not to contain a newline) on stream long ftell(FILE *stream) Returns the current file position of stream Data type long means a long integer int fseek(FILE *stream, long offset, int origin) Sets the file position for stream A subsequent read or write will access data at the new position. origin may be SEEK_SET (beginning), SEEK_CUR (current position), or SEEK_END (end of file) For a text stream, offset must be zero, or a value returned by ftell in which case origin must be SEEK_SET (fseek moves the position to the beginning or end of a text stream, or to a place that was visited previously)

26 010.133 Digital Computer Concept and Practice Copyright ©2012 by Jaejin Lee File I/O Example Copies the contents of input.txt to output.txt EOF is an integer constant defined in and it indicates ‘end of file’

27 010.133 Digital Computer Concept and Practice Copyright ©2012 by Jaejin Lee File I/O Example (contd.) #include int main(void) { FILE *fp1, *fp2; int c; fp1 = fopen("input.txt", "r"); fp2 = fopen("output.txt", "w"); while ((c = fgetc(fp1)) != EOF) fputc(c, fp2); fclose(fp1); fclose(fp2); return 0; }

28 010.133 Digital Computer Concept and Practice Copyright ©2012 by Jaejin Lee File I/O Example (contd.) Writes two strings into test.txt, sets the file position to the beginning, and reads the first line It will print “alphabet” when test.txt contains the following two lines: alphabet abcdefghijklmnopqrstuvwxyz

29 010.133 Digital Computer Concept and Practice Copyright ©2012 by Jaejin Lee File I/O Example (contd.) #include int main(void) { FILE *fp; char *pstr = "abcdefghijklmnopqrstuvwxyz"; char buf[30]; fp = fopen("test.txt", "w+"); if(fp == NULL) { printf("file open error\n"); return -1; } fputs("alphabet\n", fp); fputs(pstr, fp); fseek(fp, 0, SEEK_SET); fgets(buf, 30, fp); printf("%s", buf); fclose(fp); return 0; }


Download ppt "010.133 Digital Computer Concept and Practice Copyright ©2012 by Jaejin Lee C Language Part 4."

Similar presentations


Ads by Google