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 有用 zionwu 2013-11-01 00:57:22
学习C最好的一本书
0 有用 机动美少年高興 2015-01-31 23:16:24
当年在大四学长的旧书摊上 10 块钱买下,现在看来就像是在山洞里捡了一本武功秘籍,还是练心法内功的……
0 有用 Stats_Student 2012-04-19 12:36:12
编程不是死脑筋,有些东西是好玩的,C语言的发明者参与本书的编写,推荐啊推荐~~ 不要看别的C破书了
1 有用 不定期犯二青年 2012-10-16 12:23:05
最后和unix 接口的结合说明很有用
0 有用 李白 2022-04-03 02:40:44
拿书本学编程,扯蛋。