社区
C语言
帖子详情
求Pointers on C!!!
skyliuxu
2012-04-20 05:22:30
哪位大虾有这本书的电子版呀,或者购买链接,要英文版,中文版不用看就知道翻译的有多差劲!!!谢谢大家啦!!!
...全文
212
6
打赏
收藏
求Pointers on C!!!
哪位大虾有这本书的电子版呀,或者购买链接,要英文版,中文版不用看就知道翻译的有多差劲!!!谢谢大家啦!!!
复制链接
扫一扫
分享
转发到动态
举报
AI
作业
写回复
配置赞助广告
用AI写文章
6 条
回复
切换为时间正序
请发表友善的回复…
发表回复
打赏红包
skyliuxu
2012-04-21
打赏
举报
回复
[Quote=引用 5 楼 的回复:]
引用 4 楼 的回复:
引用 3 楼 的回复:
引用 2 楼 的回复:
www.ppurl.com
里面有英文版的。
大哥,找不着呀,您确定有?
确定pointers on Cftp://free:gIJI2NT6@www.ppurl.com/u/19/4395219/4395219.7462093047.pdf
失误了..我被名字骗了..
试试下面这个
pointe……
[/Quote]
这个我下载了,是图片扫描的,不太清晰,谢谢你了,分给你吧
evencoming
2012-04-20
打赏
举报
回复
[Quote=引用 4 楼 的回复:]
引用 3 楼 的回复:
引用 2 楼 的回复:
www.ppurl.com
里面有英文版的。
大哥,找不着呀,您确定有?
确定pointers on Cftp://free:gIJI2NT6@www.ppurl.com/u/19/4395219/4395219.7462093047.pdf
[/Quote]
失误了..我被名字骗了..
试试下面这个
[URL=http://www.verycd.com/topics/2888337/]pointers on c (电驴)[/URL]
evencoming
2012-04-20
打赏
举报
回复
[Quote=引用 3 楼 的回复:]
引用 2 楼 的回复:
www.ppurl.com
里面有英文版的。
大哥,找不着呀,您确定有?
[/Quote]
确定
pointers on C
ftp://free:gIJI2NT6@www.ppurl.com/u/19/4395219/4395219.7462093047.pdf
skyliuxu
2012-04-20
打赏
举报
回复
[Quote=引用 2 楼 的回复:]
www.ppurl.com
里面有英文版的。
[/Quote]
大哥,找不着呀,您确定有?
evencoming
2012-04-20
打赏
举报
回复
www.ppurl.com
里面有英文版的。
Pointers
On C C和指针 英文版 答案
Pointers
On C C和指针 英文版 答案 所有问题答案的补充
Kenneth Reek -
Pointers
on C
Pointers
On C brings the power of
pointers
to your C programs. Designed for professionals and advanced students,
Pointers
on C provides a comprehensive resource for those needing in-depth coverage of the C programming language. An extensive explanation of pointer basics and a thorough exploration of their advanced features allows programmers to incorporate the power of
pointers
into their C programs. Complete coverage, detailed explanations of C programming idioms, and thorough discussion of advanced topics makes
Pointers
on C a valuable tutorial and reference for students and professionals alike. Features and Benefits Provides complete background information needed for a thorough understanding of C. Covers
pointers
thoroughly, including syntax, techniques for their effective use and common programming idioms in which they appear. Compares different methods for implementing common abstract data structures. Offers an easy, conversant writing style to clearly explain difficult topics, and contains numerous illustrations and diagrams to help visualize complex concepts. Includes Programming Tips, discussing efficiency, portability, and software engineering issues, and warns of common pitfalls using Caution! Sections. Describes every function on the standard C library. For those who need an up-to-date ANSI overview of the C programming language, this book would be an excellent introduction.
Pointers
are usually a stumbling block for those programming C initially, but the author does an excellent job of detailing the use of
pointers
in this book. The use of
pointers
dominates the entire book, and after studying it, readers will have a thorough, practical knowledge of how to take advantage of the performance power of C language, due mostly to its use of
pointers
. For those programming in a commercial/business environment, where coding practices are strictly enforced, this book would be a good desk reference, as the author includes discussion of sound programming practices throughout the book. The book would also serve well those involved in teaching C in the classroom, as it contains many exercises, ranging from very easy to highly advanced. And for those readers frequently facing legacy code in C, such as scientific programmers, the author cites the differences between the older "Kernighan-Ritchie" C, and the more modern ANSI C, the latter being used in the book. These differences are indicated in the margin of the book, and are of an enormous help for those who must take older code and get it to run on more up-to-date compilers. The author also endeavors to organize the C code for those who are going on to study C++ and the accompanying object-oriented approach to programming. In addition, he emphasizes how to write C code so as to make it more portable. For those writing commercial applications in C that must be used on different platforms, this is a very important issue of course. Particularly well-written is the author's discussion on the storage class of a variable, noting, for those such as I who are pre-disposed to using recursion, that the formal parameters to a function cannot be static if recursion is to be supported. The book is full of examples such as this that give readers insight on the workings of C that fit their particular programming style. He does discuss `goto' statements in relation to function scope and in C statement structures, but, thankfully, recommends such statements never be used. He gives an interesting counterexample to those who say that goto statements must be used to break out of nested loops. Also, the author discusses the difference between L- and R-values, and this is not usually included in beginning books on C. Dynamic memory allocation has been at times a somewhat painful aspect of programming in C, but the author shows how to do straightforwardly in the book. Having a book like this that is predominantly about
pointers
is quite a blessing for those who are inexperienced with them or for more experienced programmers who are still uncomfortable with their use. It is not uncommon these days to have to write programs in one's professional work that involve triple
pointers
or even quadruple
pointers
. In addition, for embedded systems programming, the use of pointer arithmetic is almost mandatory. This also is true for writing applications in cryptography using C. The author does pay careful attention to pointer arithmetic in the book. The performance pay-off for using
pointers
is undeniable, and so a thorough knowledge of their use and pit-falls is of upmost importance for those C programmers who are involved in writing performance-sensitive applications. The author discusses in detail what can happen when
pointers
are misused and gives many examples of what to avoid and good hints for the proper use of
pointers
. He recommends against the use of the `null' pointer in array searching, and recommends a strategy for circumventing them. Some very helpful diagrams are given for explaining pointer expressions. In addition, the author gives helpful hints on when to use
pointers
and not subscripts when manipulating arrays in C. The performance issues involved in this are extremely important in scientific programming using C. The author gives a very interesting example of the differences in performance using
pointers
involving a program to copy the contents of one array into another. Arrays of
pointers
, useful in data mining applications, are also given ample treatment in this book, and the author addresses the issue of when to use a matrix instead of an array of
pointers
. The author also gives an effective presentation of functions in C, particularly the construction of recursive functions, and he employs some useful diagrams to illustrate how the variables in a recursive function call change on the stack. The performance hit experienced by using recursion versus iterative loops is discussed in a standard way via the Fibonacci series. Those readers raised in the functional programming paradigm will want to pay notice these performance issues when using C to do recursion. Along the same lines, the author shows how to implement functions with variable argument lists in C. This is another topic that is frequently passed over in beginning books on C. The author's treatment of data structures in C is also very nicely done, and he includes again a topic not usually treated in beginning books on C, namely the concept of a self-referential data structure. These are very important in applications in artificial intelligence, and the author shows how to implement them in C using a data structure that points to itself. This leads to a discussion of incomplete declarations. Very helpful diagrams are used again to discuss how to access members of data structures and how to point to data structures. Bit fields, so often used in embedded system applications, are also given a detailed treatment.
Pointers
On C
《
Pointers
on c》 is a very good book about learning the c language.
pointers
on c第五章编程练习1
pointers
on c第五章编程练习1,从标准输入读取字符,并将其中的大写字母转换为小写字母后,写到标准输出中
C 和指针
pointers
on c.pdf 全 目录
经典的书籍,添加了目录,参阅交流后请购书。
C语言
70,024
社区成员
243,263
社区内容
发帖
与我相关
我的任务
C语言
C语言相关问题讨论
复制链接
扫一扫
分享
社区描述
C语言相关问题讨论
社区管理员
加入社区
获取链接或二维码
近7日
近30日
至今
加载中
查看更多榜单
社区公告
暂无公告
试试用AI创作助手写篇文章吧
+ 用AI写文章