网站购物车   | 店铺购物车  
店铺平均得分:99.21 分,再接再厉!!!【查看全部评价】
评分 40分 50分 60分 70分 80分 90分 100分
数量 7 5 6 9 31 108 3499
本店铺共有 6 笔投诉记录,投诉率 0% ,低于平均投诉率 1% 【查看详细】
投诉类型
数量
比例
无法联系卖家
2
33%
商品问题
1
17%
发货问题
2
33%
其他
1
17%
已解决
6
100%
店主称呼:陈生   联系方式:购买咨询请联系我  02085287516    地址:广东省 广州市 天河区 五山粤汉路22号笨牛图书
促销广告:满28元包邮,下午4点前付款当天发货。默认汇通 中通快递哦
图书分类
店铺公告
特大好消息,小店满28元包邮(默认发汇通 中通快递)

包邮地区:上海市、江苏省、浙江省、安徽省、江西省、北京市、天津市、山西省、山东省、河北省、湖南省、湖北省、河南省、广东省、广西、福建省、海南省、辽宁省、吉林省、黑龙江省、陕西省、重庆市、云南省、贵州省、四川省;

不包邮偏远;地区

新疆,内蒙,青海,宁夏,西藏,地区均不包邮。

自2018年2月6日起停止发货,春节期间不定时上线处理订单,付款的订单将在2月24号左右陆续发出

平时下午4点前付的书一律当天发货,4点后的订单款第二天发货,谢谢大家选购我们的图书。
本店合作的快递是汇通快递。旧书库存不稳定,亲们拍之前最好咨询下客服是否有库存。
联系电话:02039354923 客服QQ:2910194587
店铺介绍
笨牛书店购书满18元包邮,本店为真实库存,查询有货的,可直接购买!需要请联系!本店同时承诺:本店售出的任何一本书都会先检查再发货,保证书籍无缺页,无破损等影响阅读的情况!
交易帮助
第一步:选择图书放入购物车。
第二步:结算、填写收货地址。
第三步:担保付款或银行汇款。
第四步:卖家发货。
第五步:确认收货、评价。
标准c程序设计(第三版)
出版日期:2006年05月
ISBN:9787302128311 [十位:7302128316]
页数:493      
定价:¥35.00
店铺售价:¥35.00 (为您节省:¥0.00
店铺库存:3
注:您当前是在入驻店铺购买,非有路网直接销售。
正在处理购买信息,请稍候……
我要买: * 如何购买
** 关于库存、售价、配送费等具体信息建议直接联系店主咨询。
联系店主:购买咨询请联系我  02085287516
本店已缴纳保证金,请放心购买!【如何赔付?】
店主推荐图书:
买家对店铺的满意度评价:查看更多>>
评分
评价内容
评论人
订单图书
《标准c程序设计(第三版)》内容提要:
1. Overview of C 1
1.1 History of C 1
1.2 Importance of C 2
1.3 Sample Program 1: Printing a Message 3
1.4 Sample Program 2: Adding Two Numbers 6
1.5 Sample Program 3: Interest Calculation 7
1.6 Sample Program 4: Use of Subroutines 9
1.7 Sample Program 5: Use of Math Functions 10
1.8 Basic Structure of C Programs 12
1.9 Programming Style 13
1.10 Executing a ‘C’ Program 14
1.11 Unix System 14
1.12 MS-DOS System 17
Review Questions 18
Programming Exercises 20
2. Constants, Variables
《标准c程序设计(第三版)》图书目录:
1. Overview of C 1
1.1 History of C 1
1.2 Importance of C 2
1.3 Sample Program 1: Printing a Message 3
1.4 Sample Program 2: Adding Two Numbers 6
1.5 Sample Program 3: Interest Calculation 7
1.6 Sample Program 4: Use of Subroutines 9
1.7 Sample Program 5: Use of Math Functions 10
1.8 Basic Structure of C Programs 12
1.9 Programming Style 13
1.10 Executing a ‘C’ Program 14
1.11 Unix System 14
1.12 MS-DOS System 17
Review Questions 18
Programming Exercises 20
2. Constants, Variables, and Data Types 22
2.1 Introduction 22
2.2 Character Set 22
2.3 C Tokens 24
2.4 Keywords and Identifiers 24
2.5 Constants 25
2.6 Variables 29
2.7 Data Types 30
2.8 Declaration of Variables 33
2.9 Declaration of Storage Class 36
2.10 Assigning Values to Variables 38
2.11 Defining Symbolic Constants 43
2.12 Declaring a Variable as Constant 44
2.13 Declaring a Variable as Volatile 45
2.14 Overflow and Underflow of Data 45
Case Studies 46
Review Questions 48
Programming Exercises 50
3. Operators and Expressions 51
3.1 Introduction 51
3.2 Arithmetic Operators 51
3.3 Relational Operators 54
3.4 Logical Operators 55
3.5 Assignment Operators 56
3.6 Increment and Decrement Operators 58
3.7 Conditional Operator 59
3.8 Bitwise Operators 60
3.9 Special Operators 60
3.10 Arithmetic Expressions 62
3.11 Evaluation of Expressions 62
3.12 Precedence of Arithmetic Operators 64
3.13 Some Computational Problems 66
3.14 Type Conversions in Expressions 67
3.15 Operator Precedence and Associativity 70
3.16 Mathematical Functions 72
Case Studies 73
Review Questions 76
Programming Exercises 78
4. Managing Input and Output Operations 80
4.1 Introduction 80
4.2 Reading a Character 81
4.3 Writing a Character 84
4.4 Formatted Input 85
4.5 Formatted Output 94
Case Studies 103
Review Questions 106
Programming Exercises 108
5. Decision Making and Branching 110
5.1 Introduction 110
5.2 Decision Making with if Statement 110
5.3 Simple if Statement 111
5.4 The if.....else Statement 115
5.5 Nesting of if....else Statements 118
5.6 The Else if Ladder 122
5.7 The Switch Statement 125
5.8 The ? : Operator 129
5.9 The Goto Statement 132
Case Studies 135
Review Questions 139
Programming Exercises 142
6. Decision Making and Looping 145
6.1 Introduction 145
6.2 The While Statement 147
6.3 The do Statement 150
6.4 The for Statement 152
6.5 Jumps in Loops 159
Case Studies 168
Review Questions 174
Programming Exercises 177
7. Arrays 180
7.1 Introduction 180
7.2 One-dimensional Arrays 182
7.3 Declaration of One-dimensional Arrays 183
7.4 Initialization of One-dimensional Arrays 185
7.5 Two-dimensional Arrays 189
7.6 Initializing Two-dimensional Arrays 193
7.7 Multi-dimensional Arrays 197
7.8 Dynamic Arrays 198
7.9 More About Arrays 199
Case Studies 200
Review Questions 212
Programming Exercises 214
8. Character Arrays and Strings 217
8.1 Introduction 217
8.2 Declaring and Initializing String Variables 218
8.3 Reading Strings From Terminal 219
8.4 Writing Strings to Screen 224
8.5 Arithmetic Operations on Characters 228
8.6 Putting Strings Together 230
8.7 Comparison of Two Strings 231
8.8 String-handling Functions 232
8.9 Table of Strings 237
8.10 Other Features of Strings 239
Case Studies 240
Review Questions 243
Programming Exercises 245
9. User-defined Functions 247
9.1 Introduction 247
9.2 Need for User-defined Functions 247
9.3 A Multi-function Program 248
9.4 Elements of User-defined Functions 251
9.5 Definition of Functions 252
9.6 Return Values and their Types 254
9.7 Function Calls 255
9.8 Function Declaration 257
9.9 Category of Functions 259
9.10 No Arguments and No Return Values 259
9.11 Arguments but No Return Values 261
9.12 Arguments with Return Values 265
9.13 No Arguments but Returns a Value 269
9.14 Functions that Return Multiple Values 269
9.15 Nesting of Functions 271
9.16 Recursion 272
9.17 Passing Arrays to Functions 273
9.18 Passing Strings to Functions 278
9.19 The Scope, Visibility and Lifetime of Variables 279
9.20 Multifile Programs 289
Case Study 292
Review Questions 295
Programming Exercises 299
10. Structures and Unions 301
10.1 Introduction 301
10.2 Defining a Structure 301
10.3 Declaring Structure Variables 303
10.4 Accessing Structure Members 304
10.5 Structure Initialization 306
10.6 Copying and Comparing Structure Variables 307
10.7 Operations on Individual Members 309
10.8 Arrays of Structures 310
10.9 Arrays within Structures 313
10.10 Structures within Structures 314
10.11 Structures and Functions 316
10.12 Unions 319
10.13 Size of Structures 320
10.14 Bit Fields 321
Case Study 324
Review Questions 328
Programming Exercises 331
11. Pointers 333
11.1 Introduction 333
11.2 Understanding Pointers 334
11.3 Accessing the Address of a Variable 336
11.4 Declaring Pointer Variables 337
11.5 Initialization of Pointer Variables 338
11.6 Accessing a Variable through its Pointer 340
11.7 Chain of Pointers 342
11.8 Pointer Expressions 343
11.9 Pointer Increments and Scale Factor 344
11.10 Pointers and Arrays 345
11.11 Pointers and Character Strings 349
11.12 Array of Pointers 351
11.13 Pointers as Function Arguments 352
11.14 Functions Returning Pointers 355
11.15 Pointers to Functions 355
11.16 Pointers and Structures 358
Case Studies 362
Review Questions 367
Programming Exercises 368
12. File Management in C 370
12.1 Introduction 370
12.2 Defining and Opening a File 371
12.3 Closing a File 372
12.4 Input/Output Operations on Files 373
12.5 Error Handling During I/O Operations 379
12.6 Random Access to Files 381
12.7 Command Line Arguments 386
Review Questions 389
Programming Exercises 390
13. Dynamic Memory Allocation and Linked Lists 391
13.1 Introduction 391
13.2 Dynamic Memory Allocation 391
13.3 Allocating a Block of Memory: Malloc 392
13.4 Allocating Multiple Blocks of Memory: Calloc 394
13.5 Releasing the Used Space: Free 395
13.6 Altering the Size of a Block: Realloc 396
13.7 Concepts of Linked Lists 397
13.8 Advantages of Linked Lists 400
13.9 Types of Linked Lists 401
13.10 Pointers Revisited 402
13.11 Creating a Linked List 404
13.12 Inserting an Item 407
13.13 Deleting an Item 410
13.14 Application of Linked Lists 412
Case Studies 413
Review Questions 420
Programming Exercises 421
14. The Preprocessor 423
14.1 Introduction 423
14.2 Macro Substitution 424
14.3 File Inclusion 428
14.4 Compiler Control Directives 429
14.5 ANSI Additions 432
Review Questions 435
Programming Exercises 436
15. Developing a C Program: Some Guidelines 437
15.1 Introduction 437
15.2 Program Design 437
15.3 Program Coding 439
15.4 Common Programming Errors 441
15.5 Program Testing and Debugging 448
15.6 Program Efficiency 451
Review Questions 451
Appendix I: Bit-level Programming 453
Appendix II: ASCII Values of Characters 459
Appendix III: ANSI C Library Functions 460
Appendix IV: A Phone Book 464
Bibliography 485
Index 486