C标准库(英文版)(异步图书出品)-预付365_综合福利消费平台
0 购物车
商品详情
首页 > 图书> 计算机与互联网> 编程语言与程序设计 > C标准库(英文版)(异步图书出品)
C标准库(英文版)(异步图书出品)
商品价格: ¥68.70 [定价  ¥79.00]
商品编号: 11424898
服      务: 图书 负责发货并提供售后服务
商品运费: 全站满99包邮,不满收10元,实际运费以支付页面金额为准。
温馨提示: 不支持7天无理由退货
购买数量: - +
365商城不参加品牌方的满减优惠及赠品活动
商品介绍
规格与包装
  • 商品名称:C标准库(英文版)(异步图书出品)
  • 商品编号:11424898
内容简介
  《C标准库(英文版)》是由世界级C语言专家编写的C标准库经典著作,影响了几代程序员。
  《C标准库(英文版)》集中讨论了C标准库,全面介绍了ANSI/ISO C语言标准的所有库函数。书中通过引用ISO C标准的相关部分,详细讲解了每一个库函数的使用方法,并通过示例描述了其实现细节,且给出了实现和测试这些函数的完整代码。此外,每章结尾附有不同难度的习题,帮助读者巩固和提高。通过此书,读者将会更好地使用C标准库,并学会如何设计和实现库。
  《C标准库(英文版)》结构清晰,阐述精辟,对于各层次C程序员和相关专业高校师生而言都是一本优秀的参考书。
作者简介
P.J.Plauger是最早使用C编程语言的一批用户,他主持了X3J11库函数小组委员会(由ANSI授权)来制定C标准。他随后作为X3J11的秘书和 WG14(由ISO授权的委员会)的召集人,对C标准进行了加强。Plauger博士与Brian Kernighan合作了很多备受好评的图书,其中包括SOFTWARE TOOLS、SOFTWARE TOOLS IN PASCAL和THE ELEMENT OF PROGRMMING STYLE。他还与Jim Brodie(X3J11的主席)合著了STANDARD C,该书是C编程语言的完全指南。
目录
Contents<br><br>Chapter 0: Introduction 1<br>Background 1<br>What the C Standard Says 3<br>Using the Library 7<br>Implementing the Library 9<br>Testing he Library 13<br>References 15<br>Exercises 15<br><br>Chapter 1: &lt;assert.h&gt; 17<br>Background 17<br>What the C Standard Says 18<br>Using&lt;assert.h&gt; 18<br>Implementing&lt;assert.h&gt; 20<br>Testing&lt;assert.h&gt; 22<br>References 22<br>Exercises 24<br><br>Chapter 2: &lt;ctype.h&gt; 25<br>Background 25<br>What the C Standard Says 28<br>Using&lt;ctype.h&gt; 30<br>Implementìng&lt;ctype.h&gt; 34<br>Testing&lt;ctype.h&gt; 42<br>References 43<br>Exercises 43<br><br>Chapter 3: &lt;errno.h&gt; 47<br>Background 47<br>What the C Stcndard Says 50<br>Usìng&lt;errno.h&gt; 50<br>Implementing&lt;errno.h&gt; 51<br>Testìng&lt;errno.h&gt; 55<br>References 55<br>Exercises 55<br><br>Chapter 4: &lt;float.h&gt; 57<br>Background 57<br>What the C Standard Says 59<br>Using&lt;f1oat.h&gt; 62<br>Implementing&lt;f1oat.h&gt; 64<br>Testing&lt;f1oat.h&gt; 69<br>References 71<br>Exercises 72<br><br>Chapter 5: &lt;limits.h&gt; 73<br>Background 73<br>What the C Standard Says 74<br>Using&lt;limits.h&gt; 75<br>Implementing&lt;limits.h&gt; 77<br>Testing&lt;limits.h&gt; 79<br>References 80<br>Exercises 80<br><br>Chapter 6: &lt;Locale.h&gt; 81<br>Background 81<br>What the C Standard Says 84<br>Using&lt;Locale.h&gt; 87<br>Implementing&lt;Locale.h&gt; 94<br>Testing&lt;Locale.h&gt; 123<br>References 123<br>Exercises 123<br><br>Chapter 7: &lt;math.h&gt; 127<br>Background 127<br>What the C Standard Says 130<br>Using&lt;math.h&gt; 135<br>Implementing&lt;math.h&gt; 137<br>Testing&lt;math.h&gt; 171<br>References 177<br>Exercises 177<br><br>Chapter 8: &lt;setjmp.h&gt; 181<br>Background 181<br>What the C Standard Says 184<br>Using&lt;setjmp.h&gt; 185<br>Implementing&lt;setjmp.h&gt; 187<br>Testing&lt;setjmp.h&gt; 191<br>References 192<br>Exercises 192<br><br>Chapter9: &lt;signal.h&gt; 193<br>Background 193<br>What the C Standard Says 195<br>Using&lt;signal.h&gt; 197<br>Implementing&lt;siqnal.h&gt; 199<br>Testing&lt;signal.h&gt; 203<br>References 203<br>Exercises 203<br><br>Chapter 10: &lt;stdarg.h&gt; 205<br>Background 205<br>What the C Standard Says 207<br>Using&lt;stdarg.h&gt; 208<br>Implementing&lt;stdarg.h&gt; 210<br>Testing&lt;stdarg.h&gt; 212<br>References 212<br>Exerclses 212<br><br>Chapter 11: &lt;stddef.h&gt; 215<br>Background 215<br>What the C Standard Says 217<br>Using&lt;stddef.h&gt; 217<br>Implementing&lt;stddef.h&gt; 222<br>Testing&lt;stddef.h&gt; 223<br>References 223<br>Exercises 223<br><br>Chapter 12: &lt;stdio.h&gt; 225<br>Background 225<br>What the C Standard Says 233<br>Using&lt;stdio.h&gt; 252<br>Implementing&lt;stdio.h&gt; 274<br>Testing&lt;stdio.h&gt; 325<br>References 327<br>Exercises 329<br><br>Chapter 13: &lt;stdlib.h&gt; 333<br>Background 333<br>What the C Standard Says 334<br>Using&lt;stdlib.h&gt; 344<br>Imple 1enting&lt;stdlib.h&gt; 353<br>Testing&lt;stdlib.h&gt; 381<br>References 381<br>Exercises 384<br><br>Chapter 14: &lt;string.h&gt; 387<br>Background 387<br>What the C Standard Says 388<br>Using&lt;string.h&gt; 394<br>Implementing&lt;string.h&gt; 398<br>Testing&lt;string.h&gt; 411<br>References 411<br>Exercises 411<br><br>Chapter 15: &lt;time.h&gt; 415<br>Background 415<br>What the C Standard Says 416<br>Using&lt;time.h&gt; 420<br>Implementlng&lt;time.h&gt; 425<br>Testing&lt;time.h&gt; 442<br>References 443<br>Exercises 443<br><br>Appendix A: Inferfaces 445<br>Appendix B: Names 453<br>Appendix C: Terms 463<br><br>Index 475
  • 著者[美]P.J.,Plauger
  • 出版社人民邮电出版社
  • ISBN9787115344229
  • 版次01
  • 包装平装
  • 出版时间2014-04-01
  • 页数498
  • 正文语种中文

温馨提示

由于部分商品包装更换较为频繁,因此您收到的货品有可能与图片不完全一致,请您以收到的商品实物为准,同时我们会尽量做到及时更新,由此给您带来不便多多谅解,谢谢!