Brian W. Kernighan,贝尔实验室计算科学研究中心高级研究人员,著名的计算机科学家。参加了UNIX系统、C语言、AWK语言和许多其他系统的开发,同时出版了许多在计算机领域具有影响的著作,如《The Elements of Programming Style》《The Practice of Programming》《The UNIX Programming Environment》《The AWK Language》《Software Tools》等。
Dennis M. Ritchie,1967年加入贝尔实验室。他和 Ken L. Thompson 两人共同设计并实现的C语言改变了程序设计语言发展的轨迹,是程序设计语言发展过程中的一个重要里程碑。与此同时,他们还设计并实现了UNIX操作系统。正是由于这两项巨大贡献,Dennis M. ...
Brian W. Kernighan,贝尔实验室计算科学研究中心高级研究人员,著名的计算机科学家。参加了UNIX系统、C语言、AWK语言和许多其他系统的开发,同时出版了许多在计算机领域具有影响的著作,如《The Elements of Programming Style》《The Practice of Programming》《The UNIX Programming Environment》《The AWK Language》《Software Tools》等。
Dennis M. Ritchie,1967年加入贝尔实验室。他和 Ken L. Thompson 两人共同设计并实现的C语言改变了程序设计语言发展的轨迹,是程序设计语言发展过程中的一个重要里程碑。与此同时,他们还设计并实现了UNIX操作系统。正是由于这两项巨大贡献,Dennis M. Ritchie 于1983年获得了计算机界的最高奖——图灵奖。此外,他还获得了ACM、IEEE、贝尔实验室等授予的多种奖项.。
目录
· · · · · ·
Preface
Preface to the Edition
Introduction
Chapter 1.A Tutorial Introduction
Chapter 2.Types, Operators, and Expressions
Chapter 3.Control Flow
· · · · · ·
(更多)
Preface
Preface to the Edition
Introduction
Chapter 1.A Tutorial Introduction
Chapter 2.Types, Operators, and Expressions
Chapter 3.Control Flow
Chapter 4.Functions and Program Struc
· · · · · · (收起)
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. (查看原文)
0 有用 火箭的吐槽 2011-12-23 15:59:48
大一在旧书店买的,果然是本好书,带领我走向了程序猿的不归路...
0 有用 juntao.qiu 2012-02-10 16:57:25
在学校的地摊上买的英文版
0 有用 Bryce® 2023-10-18 10:18:12 北京
愚蠢的本科老师,让我走了很多弯路
0 有用 okidogi 2007-10-13 23:58:09
不用说了,K&R。
0 有用 麥哲倫 2013-11-28 11:00:47
kiss