作者:
Brian W. Kernighan
/
Dennis M. Ritchie 出版社: Prentice Hall 副标题: Second Edition 出版年: 1988-4-1 页数: 274 定价: USD 67.00 装帧: Paperback ISBN: 9780131103627
Presents a complete guide to ANSI standard C language programming. Written by the developers of C, this new version helps readers keep up with the finalized ANSI standard for C while showing how to take advantage of C's rich set of operators, economy of expression, improved control flow, and data structures. This 2nd edition has been completely rewritten with additional example...
Presents a complete guide to ANSI standard C language programming. Written by the developers of C, this new version helps readers keep up with the finalized ANSI standard for C while showing how to take advantage of C's rich set of operators, economy of expression, improved control flow, and data structures. This 2nd edition has been completely rewritten with additional examples and problem sets to clarify the implementation of difficult language constructs. 7 x 9 1/4.
Brian W. Kernighan works in the Computing Science Research Center at Bell Laboratories, Lucent Technologies. He is Consulting Editor for Addison-Wesley's Professional Computing Series and the author, with Dennis Ritchie, of The C Programming Language.
Dennis Ritchie is a computer scientist notable for his influence on ALTRAN, B, BCPL, C, Multics, and Unix.
If a name that has not been previously declared occurs in an expression and is followed by a left parenthesis, it is declared by context to be a function name, the function is assumed to return an int, and nothing is assumed about its arguments. Furthermore, if a function declaration does not include arguments, as in
double atof();
that too is taken to mean that nothing is to be assumed about the arguments of atof; all parameter checking is turned off. This special meaning of the empty argument list is intended to permit older C programs to compile with new compilers. But it’s a bad idea to use it with new programs. If the function takes arguments, declare them; if it takes no arguments, use void. (查看原文)
1 有用 盐午 2016-02-15 04:43:20
就好像一个基督徒终于读完了圣经,满足、畅快、如释重负。
1 有用 Victor 2024-06-28 21:28:15 上海
感激涕零,不知所言。该说的一句不漏,废话一句没有。要知道在计算机科学这个日新月异的领域,一本正文才160多页的教材能经久不衰有多难。除此之外,据我所知这样的常青树也只有cmu空前绝后的CSAPP,可能《算法导论》也算一个?一言以蔽之,legendary😎
0 有用 你的小葱 2012-01-18 09:42:08
eecs 381 textbook
0 有用 forgetthisuser 2012-11-29 20:07:33
老了
0 有用 听临 2012-12-29 14:33:17
虽然从来没有用C开发过什么东西~~