成功加入购物车

去购物车结算 X
呱呱图书专营店
  • 8063753|正版 c程序设计语言(英文影印版)(第2版)
图文详情

8063753|正版 c程序设计语言(英文影印版)(第2版)

举报

9787111196266

  • 出版时间: 
  • 装帧:    平装
  • 开本:    16开
  • ISBN:  9787111196266
  • 出版时间: 
  • 装帧:  平装
  • 开本:  16开

售价 60.30

品相 全新

优惠 满包邮

优惠 满减券
    运费
    本店暂时无法向该地区发货

    延迟发货说明

    时间:
    说明:

    上书时间2023-04-25

    数量
    库存999
    微信扫描下方二维码
    微信扫描打开成功后,点击右上角”...“进行转发

    卖家超过10天未登录

    三年老店
    店铺等级
    资质认证
    90天平均
    成功完成
    79.7% (212笔)
    好评率
    99.23%
    发货时间
    25.51小时
    • 商品详情
    • 店铺评价
    立即购买 加入购物车 收藏
    手机购买
    微信扫码访问
    • 商品分类:
      工程技术
      货号:
      544544135683
      商品描述:
       书   名:  【正版】C程序设计语言(英文影印版)(第2版)|31413   图书定价: 35元   作 者: (美)Brian W.Kernighan, Dennis M.Ritchie   出 版 社:  机械工业出版社   出版日期:  2006/8/1 0:00:00   ISBN 号: 7111196260   开   本:16开  页   数:272  版   次:2-1  \
      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、贝尔实验室等授予的多种奖项。...\
       \
      在计算机发展的历史上,没有哪一种程序设计语言像C语言这样应用广泛。本书是C语言的设计者之一Dennis M.Ritchie和著名的计算机科学家Brian W.Kernighan合著的一本介绍C语言的权威经典著作。我们现在见到的大量论述C语言程序设计的教材和专著均以此书为蓝本。本书第1版中介绍的C语言成为后来广泛使用的C语言版本——标准C的基础。人们熟知的“hello,World”程序就是由本书首次引入的。现在,这一程序已经成为众多程序设计语言入门的第一课。.
      \
      第2版根据1987年制定的ANSIC标准做了适当的修订,引入了最新的语言形式,并增加了新的示例。通过简洁的描述、典型的示例,作者全面、系统、准确地讲述了C语言的各个特性以及程序设计的基本方法。对于计算机从业人员来说,本书是一本必读的程序设计语言方面的参考书。...\
       
      序.
      第1版序
      Introduetion
      Chapter 1. A Tutorial Introduefion
      1.1 Getting Staffed
      1.2 Variables and Arithmctic Expressions
      1.3 The For Statement
      1.4 Symbolic Constants
      1.5 Character Input and Output
      1.6 Arrays
      1.7 Functions
      1.8 Arguments--Call by Value
      1.9 Character Arrays
      1.10 External Variables and Scope
      Chapter 2. Types, Operators, and Expressions
      2.1 Variable Names
      2.2 Data Types and Sizes
      2.3 Constants
      2.4 Declarations
      2.5 Arithmetic Operators
      2.6 Relational and Logical Operators
      2,7 Type Conversions
      2.8 Increment and Decrement Operators
      2.9 Bitwise Operators
      2.10 Assignment Operators and Expressions
      2.11 Conditional Expressions
      2.12 Precedence and Order of Evaluation
      Chapter 3. Control Flow
      3.1 Statements and Blocks
      3.2 If-Else
      3.3 Else-lf
      3.4 Switch
      3.5 Loops--While and For
      3.6 Loops-- Do-while
      3.7 Break and Continue
      3.8 Goto and Labels
      Chapter 4. Functions and Program Structure
      4.1 Basics of Functions
      4.2 Functions Returning Non-integers
      4.3 External Variables
      4.4 Scope Rules
      4.5 Header Files
      4.6 Static Variables
      4.7 Register Variables
      4.8 Block Structure
      4.9 Initialization
      4.10 Rocursi6n
      4.11 The C Preprocessor
      Chapter 5. Pointers and Arrays
      5.1 Pointers and Addresses ..
      5.2 Pointers and Function Arguments
      5.3 Pointers and Arrays
      5.4 Address Arithmetic
      5.5 Character Pointers and Functions
      5.6 Pointer Arrays; Pointers to Pointers
      5.7 Multi-dimensional Arrays
      5.8 Initialization of Pointer Arrays
      5.9 Pointers vs. Multi-dimensional Arrays
      5.10 Command-line Arguments
      5.11 Pointers to Functions
      5.12 Complicated Declarations
      Chapter 6. Structures
      6.1 Basics of Structures
      6.2 Structures and Functions
      6.3 Arrays of Structures
      6.4 Pointers to Structures
      6.5 Self-referential Structures
      6.6 Table Lookup
      6.7 Typedef
      6.8 Unions
      6.9 Bit-fields
      Chapter 7. Input and Output
      7.1 Standard Input and Output
      7.2 Formatted Output-Printf
      7.3 Variable-length Argument Lists
      7.4 Formatted Input--Scanf
      7.5 File Access
      7.6 Error Handling-Stderr and Exit
      7.7 Line Input and Output
      7.8 Miscellaneous Functions
      Chapter 8. The UNIX System Interface
      8.1 File Descriptors
      8.2 Low Level I/O--Read and Write
      8.3 Open, Creat, Close, Unlink
      8.4 Random Access -- Lseek
      8.5 Example--An Implementation of Fopen and Getc
      8.6 Example--Listing Directories
      8.7 Example--A Storage Allocator
      Appendix A. Reference Manual
      A1 Introduction
      A2 Lexieal Conventions
      A3 Syntax Notation
      A4 Meaning of Identifiers
      A5 Objects and Lvalues
      A6 Conversions
      A7 Expressions
      A8 Declarations
      A9 Statements
      A10 External Declarations
      A11 Scopeand Linkage
      A12 Preprocessing
      A13 Grammar
      Appendix B. Standard Library
      BI Input and Output: 
      B2 Character Class Tests: 
      B3 String Functions: 
      B4 Mathematical Functions: 
      B5 Utility Functions: 
      B6 Diagnostics: 
      B7 Variable Argument Lists: 
      B8 Non-local Jumps: 
      B9 Signals: 
      B10 Date and Time Functions: 
      B11 Implementation-defined Limits: and 
      Appendix C. Summary of Changes
      Index...
       \
      本书是由C语言的设计者Brian W.Kernighan和Dennis M.Ritchie编写的一部介绍标准C语言及其程序设计方法的**性经典*作。英文影印版,全面、系统地讲述了C语言的各个特性及程序设计的基本方法,包括基本概念,类型和表达式、控制流、函数与程序结构、指针与数组、结构、输入与输出、UNIX系统接口、标准库等内容。本书的讲述深入浅出,配合典型例证,通俗易懂,实用性强,适合作为大专院校计算机专业或非计算机专业的C语言教材,也可以作为从事计算机相关软硬件开发的技术人员的参考书。
      \
      本店所售图书均为正版书籍'

      配送说明

      ...

      相似商品

      为你推荐

    孔网啦啦啦啦啦纺织女工火锅店第三课

    开播时间:09月02日 10:30

    即将开播,去预约
    直播中,去观看