中图网(原中国图书网):网上书店,尾货特色书店,30万种特价书低至2折!

歡迎光臨中圖網 請 | 注冊
> >>
國外計算機科學教材系列C語言大學教程(第7版)(英文版)/(美)PAUL DEITEL

包郵 國外計算機科學教材系列C語言大學教程(第7版)(英文版)/(美)PAUL DEITEL

出版社:電子工業出版社出版時間:2017-06-01
開本: 其他 頁數: 808
本類榜單:教材銷量榜
中 圖 價:¥66.3(4.8折) 定價  ¥139.0 登錄后可看到會員價
加入購物車 收藏
開年大促, 全場包郵
?新疆、西藏除外
溫馨提示:5折以下圖書主要為出版社尾貨,大部分為全新(有塑封/無塑封),個別圖書品相8-9成新、切口
有劃線標記、光盤等附件不全詳細品相說明>>
本類五星書更多>

國外計算機科學教材系列C語言大學教程(第7版)(英文版)/(美)PAUL DEITEL 版權信息

國外計算機科學教材系列C語言大學教程(第7版)(英文版)/(美)PAUL DEITEL 本書特色

本書是全球暢銷的C語言教程之一。全書系統地介紹了4種當今流行的程序設計方法——面向過程、基于對象、面向對象以及泛型編程,內容全面、生動、易懂,作者由淺入深地介紹了結構化編程及軟件工程的基本概念,從簡單的概念到*終的完整的語言描述,清晰、準確、透徹、詳細地講解了C語言,尤其注重程序設計思想和方法的介紹。相對于上一版,這一版在內容方面新增加了C安全程序設計、"更上一層樓”習題集,更新了C 和面向對象程序設計、基于Allegro的游戲編程、C99標準介紹等內容。

國外計算機科學教材系列C語言大學教程(第7版)(英文版)/(美)PAUL DEITEL 內容簡介

本書是優選暢銷的C語言教程之一。全書系統地介紹了4種當今流行的程序設計方法――面向過程、基于對象、面向對象以及泛型編程,內容全面、生動、易懂,作者由淺入深地介紹了結構化編程及軟件工程的基本概念,從簡單的概念到很終的完整的語言描述,清晰、準確、透徹、詳細地講解了C語言,尤其注重程序設計思想和方法的介紹。相對于上一版,這一版在內容方面新增加了C安全程序設計、"更上一層樓”習題集,更新了C++和面向對象程序設計、基于Allegro的游戲編程、C99標準介紹等內容。

國外計算機科學教材系列C語言大學教程(第7版)(英文版)/(美)PAUL DEITEL 目錄

Contents
Chapter 1 Introduction to Computers, the Internet and the Web 1
1.1 Introduction 2
1.2 Computers and the Internet in Industry and Research 2
1.3 Hardware and Software 4
1.4 Data Hierarchy 6
1.5 Programming Languages 7
1.6 The C Programming Language 7
1.7 C Standard Library 9
1.8 C and Other C-Based Languages 9
1.9 Object Technology 10
1.10 Typical C Program Development Environment 12
1.11 Test-Driving a C Application in Windows, Linux and Mac OS X 14
1.12 Operating Systems 21
1.13 The Internet and World Wide Web 23
1.14 Some Key Software Development Terminology 24
1.15 Keeping Up-to-Date with Information Technologies 25
1.16 Web Resources 26
Chapter 2 Introduction to C Programming 32
2.1 Introduction 32
2.2 A Simple C Program: Printing a Line of Text 32
2.3 Another Simple C Program: Adding Two Integers 36
2.4 Memory Concepts 39
2.5 Arithmetic in C 40
2.6 Decision Making: Equality and Relational Operators 43
2.7 Secure C Programming 46
Chapter 3 Structured Program Development in C 58
3.1 Introduction 58
3.2 Algorithms 59
3.3 Pseudocode 59
3.4 Control Structures 59
3.5 The if Selection Statement 61
3.6 The if…else Selection Statement 62
3.7 The while Repetition Statement 65
3.8 Formulating Algorithms Case Study 1: CounterControlled Repetition 66
3.9 Formulating Algorithms with Top-Down, Stepwise Refinement Case Study 2:
Sentinel-Controlled Repetition 67
3.10 Formulating Algorithms with Top-Down, Stepwise Refinement Case Study 3:
Nested Control Statements 72
3.11 Assignment Operators 75
3.12 Increment and Decrement Operators 76
3.13 Secure C Programming 78
Chapter 4 C Program Control 95
4.1 Introduction 95
4.2 Repetition Essentials 96
4.3 Counter-Controlled Repetition 96
4.4 for Repetition Statement 98
4.5 for Statement: Notes and Observations 100
4.6 Examples Using the for Statement 100
4.7 switch Multiple-Selection Statement 103
4.8 do…while Repetition Statement 108
4.9 break and continue Statements 109
4.10 Logical Operators 111
4.11 Confusing Equality (==) and Assignment (=) Operators 113
4.12 Structured Programming Summary 114
4.13 Secure C Programming 118
Chapter 5 C Functions 132
5.1 Introduction 133
5.2 Program Modules in C 133
5.3 Math Library Functions 134
5.4 Functions 135
5.5 Function Definitions 135
5.6 Function Prototypes: A Deeper Look 139
5.7 Function Call Stack and Stack Frames 141
5.8 Headers 143
5.9 Passing Arguments By Value and By Reference 144
5.10 Random Number Generation 145
5.11 Example: A Game of Chance 148
5.12 Storage Classes 151
5.13 Scope Rules 152
5.14 Recursion 155
5.15 Example Using Recursion: Fibonacci Series 158
5.16 Recursion vs. Iteration 160
5.17 Secure C Programming 162
Chapter 6 C Arrays 181
6.1 Introduction 181
6.2 Arrays 182
6.3 Defining Arrays 182
6.4 Array Examples 183
6.5 Passing Arrays to Functions 193
6.6 Sorting Arrays 196
6.7 Case Study: Computing Mean, Median and Mode Using Arrays 198
6.8 Searching Arrays 202
6.9 Multidimensional Arrays 206
6.10 Variable-Length Arrays 211
6.11 Secure C Programming 213
Chapter 7 C Pointers 230
7.1 Introduction 231
7.2 Pointer Variable Definitions and Initialization 231
7.3 Pointer Operators 232
7.4 Passing Arguments to Functions by Reference 233
7.5 Using the const Qualifier with Pointers 235
7.6 Bubble Sort Using Pass-by-Reference 241
7.7 sizeof Operator 243
7.8 Pointer Expressions and Pointer Arithmetic 245
7.9 Relationship between Pointers and Arrays 247
7.10 Arrays of Pointers 250
7.11 Case Study: Card Shuffling and Dealing Simulation 251
7.12 Pointers to Functions 254
7.13 Secure C Programming 258
Chapter 8 C Characters and Strings 277
8.1 Introduction 278
8.2 Fundamentals of Strings and Characters 278
8.3 Character-Handling Library 280
8.4 String-Conversion Functions 284
8.5 Standard Input/Output Library Functions 286
8.6 String-Manipulation Functions of the StringHandling Library 289
8.7 Comparison Functions of the String-Handling Library 291
8.8 Search Functions of the String-Handling Library 292
8.9 Memory Functions of the String-Handling Library 297
8.10 Other Functions of the String-Handling Library 300
8.11 Secure C Programming 301
Chapter 9 C Formatted Input/Output 314
9.1 Introduction 314
9.2 Streams 315
9.3 Formatting Output with printf 315
9.4 Printing Integers 315
9.5 Printing Floating-Point Numbers 316
9.6 Printing Strings and Characters 318
9.7 Other Conversion Specifiers 318
9.8 Printing with Field Widths and Precision 319
9.9 Using Flags in the printf Format Control String 321
9.10 Printing Literals and Escape Sequences 323
9.11 Reading Formatted Input with scanf 323
9.12 Secure C Programming 328
Chapter 10 C Structures, Unions, Bit Manipulation and Enumerations 335
10.1 Introduction 336
10.2 Structure Definitions 336
10.3 Initializing Structures 338
10.4 Accessing Structure Members 338
10.5 Using Structures with Functions 340
10.6 typedef 340
10.7 Example: High-Performance Card Shuffling and Dealing Simulation 341
10.8 Unions 343
10.9 Bitwise Operators 344
10.10 Bit Fields 351
10.11 Enumeration Constants 353
10.12 Secure C Programming 355
Chapter 11 C File Processing 365
11.1 Introduction 365
11.2 Files and Streams 366
11.3 Creating a Sequential-Access File 366
11.4 Reading Data from a Sequential-Access File 370
11.5 Random-Access Files 373
11.6 Creating a Random-Access File 374
11.7 Writing Data Randomly to a Random-Access File 375
11.8 Reading Data from a Random-Access File 377
11.9 Case Study: Transaction-Processing Program 379
11.10 Secure C Programming 383
Chapter 12 C Data Structures 393
12.1 Introduction 394
12.2 Self-Referential Structures 394
12.3 Dynamic Memory Allocation 395
12.4 Linked Lists 396
12.5 Stacks 402
12.6 Queues 406
12.7 Trees 411
12.8 Secure C Programming 415
Chapter 13 C Preprocessor 427
13.1 Introduction 427
13.2 #include Preprocessor Directive 428
13.3 #define Preprocessor Directive: Symbolic Constants 428
13.4 #define Preprocessor Directive: Macros 429
13.5 Conditional Compilation 430
13.6 #error and #pragma Preprocessor Directives 431
13.7 # and ## Operators 432
13.8 Line Numbers 432
13.9 Predefined Symbolic Constants 432
13.10 Assertions 433
13.11 Secure C Programming 433
Chapter 14 Other C Topics 438
14.1 Introduction 438
14.2 Redirecting I/O 438
14.3 Variable-Length Argument Lists 439
14.4 Using Command-Line Arguments 441
14.5 Notes on Compiling Multiple-Source-File Programs 442
14.6 Program Termination with exit and atexit 443
14.7 Suffixes for Integer and Floating-Point Literals 444
14.8 Signal Handling 445
14.9 Dynamic Memory Allocation: Functions calloc and realloc 447
14.10 Unconditional Branching with goto 447
Chapter 15 C as a Better C; Introducing Object Technology 453
15.1 Introduction 454
15.2 C 454
15.3 A Simple Program: Adding Two Integers 454
15.4 C Standard Library 456
15.5 Header Files 457
15.6 Inline Functions 458
15.7 References and Reference Parameters 460
15.8 Empty Parameter Lists 464
15.9 Default Arguments 464
15.10 Unary Scope Resolution Operator 466
15.11 Function Overloading 467
15.12 Function Templates 469
15.13 Introduction to C Standard Library Class Template vector 471
15.14 Introduction to Object Technology and the UML 476
15.15 Wrap-Up 479
Chapter 16 Introduction to Classes, Objects and Strings
展開全部

國外計算機科學教材系列C語言大學教程(第7版)(英文版)/(美)PAUL DEITEL 作者簡介

Paul Deitel和Harvey Deitel是全球暢銷的編程語言教材和專業圖書作家,“How to Program”系列是其最負盛名的一套計算機編程教材,已經銷售近40年,并被翻譯成中文在內的十幾種語言。他們成立的Deitel & Associates公司是一家國際知名的企業培訓和寫作公司,專門進行計算機編程語言、對象技術、移動應用開發及Internet和Web軟件技術方面的培訓和寫作,出版了一流的編程專業的大學教材、 專業圖書以及LiveLessons視頻課程。
Paul Deitel和Harvey Deitel是全球暢銷的編程語言教材和專業圖書作家,“How to Program”系列是其最負盛名的一套計算機編程教材,已經銷售近40年,并被翻譯成中文在內的十幾種語言。他們成立的Deitel & Associates公司是一家國際知名的企業培訓和寫作公司,專門進行計算機編程語言、對象技術、移動應用開發及Internet和Web軟件技術方面的培訓和寫作,出版了一流的編程專業的大學教材、 專業圖書以及LiveLessons視頻課程。

商品評論(0條)
暫無評論……
書友推薦
本類暢銷
編輯推薦
返回頂部
中圖網
在線客服
主站蜘蛛池模板: 硅胶管挤出机厂家_硅胶挤出机生产线_硅胶条挤出机_臣泽智能装备 贵州科比特-防雷公司厂家提供贵州防雷工程,防雷检测,防雷接地,防雷设备价格,防雷产品报价服务-贵州防雷检测公司 | 横河变送器-横河压力变送器-EJA变送器-EJA压力变送器-「泉蕴仪表」 | 异噻唑啉酮-均三嗪-三丹油-1227-中北杀菌剂厂家 | 河南新乡德诚生产厂家主营震动筛,振动筛设备,筛机,塑料震动筛选机 | 光纤测温-荧光光纤测温系统-福州华光天锐光电科技有限公司 | EFM 022静电场测试仪-套帽式风量计-静电平板监测器-上海民仪电子有限公司 | 接地电阻测试仪[厂家直销]_电缆故障测试仪[精准定位]_耐压测试仪-武汉南电至诚电力设备 | 不锈钢闸阀_球阀_蝶阀_止回阀_调节阀_截止阀-可拉伐阀门(上海)有限公司 | 安规电容|薄膜电容|陶瓷电容|智旭JEC安规电容厂家 | 消泡剂_水处理消泡剂_切削液消泡剂_涂料消泡剂_有机硅消泡剂_广州中万新材料生产厂家 | 动库网动库商城-体育用品专卖店:羽毛球,乒乓球拍,网球,户外装备,运动鞋,运动包,运动服饰专卖店-正品运动品网上商城动库商城网 - 动库商城 | 泰国专线_泰国物流专线_广州到泰国物流公司-泰廊曼国际 | 合肥触摸一体机_触摸查询机厂家_合肥拼接屏-安徽迅博智能科技 | SDG吸附剂,SDG酸气吸附剂,干式酸性气体吸收剂生产厂家,超过20年生产使用经验。 - 富莱尔环保设备公司(原名天津市武清县环保设备厂) | 尼龙PA610树脂,尼龙PA612树脂,尼龙PA1010树脂,透明尼龙-谷骐科技【官网】 | 手持气象站_便携式气象站_农业气象站_负氧离子监测站-山东万象环境 | 不锈钢水箱厂家,不锈钢保温水箱-山东桑特供水设备 | 宽带办理,电信宽带,移动宽带,联通宽带,电信宽带办理,移动宽带办理,联通宽带办理 | 户外-组合-幼儿园-不锈钢-儿童-滑滑梯-床-玩具-淘气堡-厂家-价格 | 宽带办理,电信宽带,移动宽带,联通宽带,电信宽带办理,移动宽带办理,联通宽带办理 | 钢托盘,铁托盘,钢制托盘,镀锌托盘,饲料托盘,钢托盘制造商-南京飞天金属13260753852 | 河北码上网络科技|邯郸小程序开发|邯郸微信开发|邯郸网站建设 | 磁力加热搅拌器-多工位|大功率|数显恒温磁力搅拌器-司乐仪器官网 | 伊卡洛斯软装首页-电动窗帘,别墅窗帘,定制窗帘,江浙沪1000+别墅窗帘案例 | CE认证_产品欧盟ROHS-REACH检测机构-商通检测 | 洛阳永磁工业大吊扇研发生产-工厂通风降温解决方案提供商-中实洛阳环境科技有限公司 | 网站建设,北京网站建设,北京网站建设公司,网站系统开发,北京网站制作公司,响应式网站,做网站公司,海淀做网站,朝阳做网站,昌平做网站,建站公司 | 广州市哲铭油墨涂料有限公司,水性漆生产研发基地 | Akribis直线电机_直线模组_力矩电机_直线电机平台|雅科贝思Akribis-杭州摩森机电科技有限公司 | LOGO设计_品牌设计_VI设计 - 特创易 | 祝融环境-地源热泵多恒系统高新技术企业,舒适生活环境缔造者! | 知名电动蝶阀,电动球阀,气动蝶阀,气动球阀生产厂家|价格透明-【固菲阀门官网】 | 高铝矾土熟料_细粉_骨料_消失模_铸造用铝矾土_铝酸钙粉—嵩峰厂家 | 知名电动蝶阀,电动球阀,气动蝶阀,气动球阀生产厂家|价格透明-【固菲阀门官网】 | BOE画框屏-触摸一体机-触控查询一体机-触摸屏一体机价格-厂家直销-触发电子 | 杭州顺源过滤机械有限公司官网-压滤机_板框压滤机_厢式隔膜压滤机厂家 | 南京展台搭建-南京展会设计-南京展览设计公司-南京展厅展示设计-南京汇雅展览工程有限公司 | 废气处理设备-工业除尘器-RTO-RCO-蓄热式焚烧炉厂家-江苏天达环保设备有限公司 | 校服厂家,英伦校服定做工厂,园服生产定制厂商-东莞市艾咪天使校服 | 体感VRAR全息沉浸式3D投影多媒体展厅展会游戏互动-万展互动 | 液压油缸生产厂家-山东液压站-济南捷兴液压机电设备有限公司 |