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、贝尔实验室等授予的多种奖项.。
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. (查看原文)
3 有用 橡皮人 2012-07-13 17:13:23
评分:7.5 权重:15 期中感受:貌似比谭浩强的易读不少,单宝松各种高端... 期末感受:谭浩强实际上更易学,不过过于傻瓜啰嗦,而本书适合更有天赋或者有编程基础的人学习,其中运用的例子都十分经典,是谭浩强不能比肩的。不过两本书似乎都难于复习。这本书还是有相当一部分我看不懂..有点打击兴趣
3 有用 摩诘 2008-11-02 22:09:29
多一字嫌多,少一字嫌少
14 有用 Menghan 2011-10-13 10:40:12
向 Dennis M.Ritchie 致敬
3 有用 嘎抓 2019-04-19 17:18:53
简洁干练,重要的是思想,不适合初学者
83 有用 t ú n 2012-11-29 17:37:00
万物之源,程序设计的圣经。简约精炼。但是,需要有基础的人阅读。