全部博文(136)
发布时间:2011-03-21 20:06:36
c programming language 5.5: character pointers and functions. strcpy: copy of two strings!......【阅读全文】
发布时间:2011-03-21 19:42:26
c programming language 5.3: pointers and arrays! A program computes the length of a string by using pointers!......【阅读全文】
发布时间:2011-03-21 19:26:45
c programming language 5.2: pointers and function arguments. Pass arguments can be by pointers or addresses, if you want to alter or change the variables in the calling function.......【阅读全文】
发布时间:2011-03-21 10:18:19
K&R(4.1): basics of functions! Design and write a program to print each line of its input that contains a particular "pattern" or string of characters. (A special case of the UNIX program grep)......【阅读全文】
发布时间:2011-03-21 10:15:16
K&R(3.5): Loops - While and For! reverse: reversees the string s in place!......【阅读全文】