购买云解压PDF图书

当前位置: C语言程序设计 > 购买云解压PDF图书
C语言程序设计
  • 作 者:朱晋蜀,李向阳主编
  • 出 版 社:重庆:重庆大学出版社
  • 出版年份:1997
  • ISBN:7562413436
  • 注意:在使用云解压之前,请认真核对实际PDF页数与内容!

在线云解压

价格(点数)

购买连接

说明

转为PDF格式

9

立即购买

(在线云解压服务)

云解压服务说明

1、本站所有的云解压默认都是转为PDF格式,该格式图书只能阅读和打印,不能再次编辑。

云解压下载及付费说明

1、所有的电子图书云解压均转换为PDF格式,支持电脑、手机、平板等各类电子设备阅读;可以任意拷贝文件到不同的阅读设备里进行阅读。

2、云解压在提交订单后一般半小时内处理完成,最晚48小时内处理完成。(非工作日购买会延迟)

第一章 C语言导引(Introduction to C) 1

1.1 C语言简述(An Overview of C) 1

1.2 C语言程序(C Language Programs) 2

1.3 编程基础(Programming Basis) 4

1.4 C系统(C System) 10

小结(Summary) 11

思考题(Points to Ponder Exercises) 12

实验(Experiments) 13

第二章 基本数据类型(The Fundamental Data Types) 15

2.1 说明和表达式(Declarations and Expressions) 15

2.2 基本数据类型(The Fundamental Data Types) 16

2.3 char类型(The Data Type char) 17

2.4 int类型(The Data Type int) 19

2.5 整数类型(The Integral Types) 20

2.6 浮点类型(The Floating Types) 21

2.7 类型定义(The Use of typedef) 22

2.8 容量运算符(The sizeof Operator) 22

2.9 宏getchar()和putchsr() 23

2.10 数学函数(Mathemstical Functions) 25

2.11 类型转换(Conversions and Casts) 26

小结(Summary) 28

思考题(Points to Ponder Exercises) 29

实验(Experiments) 30

第三章 控制流语句(Flow of Control) 32

3.1 关系和逻辑运算符(Relational and Logical Operators) 32

3.2 复合语句(Compound Statement) 37

3.3 空语句(Empty Statement) 38

3.4 if和if-else语句 38

3.5 while语句 40

3.6 for语句 43

3.7 程序举例(An Example of Boolean Variables) 44

3.8 逗号运算符(The Comma Operator) 45

3.9 do语句 46

3.10 程序举例(An Example of Fibonacci Numbers) 47

3.11 goto语句 49

3.12 break和continue语句 50

3.13 switch语句 51

3.14 条件运算符(The Conditional Operator) 52

小结(Summary) 53

思考题(Points to Ponder Exercises) 54

实验(Experiments) 56

第四章 函数(Functions) 58

4.1 函数的定义(Function Definition) 58

4.2 return语句 59

4.3 函数的原型(Function Prototypes) 61

4.4 函数的调用(Function Invocation) 62

4.5 递归调用(Recursion) 64

4.6 存储类型(Storage Classes) 65

小结(Summary) 72

思考题(Points to Ponder Exercises) 73

实验(Experiments) 76

第五章 数组(Arrays) 78

5.1 一维数组(One-dimensional Arrays) 78

5.2 二维数组(Two-dimensional Arrays) 80

5.3 字符数组和字符串(Character Arrays and Strings) 82

5.4 数组作函数的参数(Arrays as Function Arguments) 86

小结(Summary) 89

思考题(Points to Ponder Exercises) 89

实验(Experiments) 91

6.1 算法与数据结构(Algorithms and Data Structures) 94

第六章 程序设计导论(Introduction to Programming) 94

6.2 “八皇后”问题(The Eight Queens Problem) 95

6.3 结构化程序设计(Constructed Programming) 99

小结(Summary) 104

思考题(Pointsto Ponder Exercises) 104

实验(Experiments) 105

第七章 指针(Pointers) 106

7.1 指针变量(Pointer Variables) 106

7.2 指针作函数参数(Pointers as Function Arguments) 108

7.3 指针与数组(The Relationship between Pointers and Arrays) 112

7.4 字符指针与字符串(Character Pointers vesus Strings) 121

7.5 指针数组(Using Pointers with Arrays) 124

7.6 命令行参数(main with Arguments) 127

7.7 函数指针(Pointers to Functions) 129

思考题(Points to Ponder Exercises) 134

小结(Summary) 134

实验(Experiments) 138

第八章 结构与联合(Structures and Unions) 140

8.1 结构(Structures) 140

8.2 运算符优先级(Operator Precedence and Associativity) 145

8.3 类型定义(typedef) 146

8.4 结构与数组(Using Structures with Arrays) 147

8 5 结构与指针(Using Structures with Pointers) 151

8.6 结构与函数(Using Structures with Functions) 154

8.7 位域(Bit Fields) 160

8 8 联合(Unions) 163

8.9 枚举(Enumeration Types) 166

8.10 自引用结构(Self-referential Structures) 168

小结(Summary) 175

思考题(Points to Ponder Exercises) 176

实验(Experiments) 181

第九章 文件I/O 183

9.1 文件的基本概念(Fundament Concepts of Files) 183

9.2 标准级文件的打开与关闭函数(fopen() and fclose()) 185

9.3 标准级文件I/O函数(Standard I/O Functions) 188

9.4 文件定位函数(File Positioning Functions) 194

9.5 文件的块存取(Direct input/output) 196

9.6 低级文件I/O(System I/O) 199

小结(Summary) 206

思考题(Points to Ponder Exercises) 207

实验(Experiments) 208

第十章 预编译(The Preprocessor) 210

10.1 宏(Macros) 210

10 2 文件包含(include) 214

10.3 条件编译(Conditional Compilation) 215

10.4 其它预处理命令(Other Preprocessing Operators) 217

小结(Summary) 219

思考题(Points to Ponder Exercises) 219

实验(Experiments) 223

第十一章 标准库函数(The Standard Library) 224

11.1 字符类函数(Character Functions) 224

11.2 字符串函数(String Functions) 225

11.3 数学函数(Mathematicsl Functions) 229

11.4 内存管理(Memory Handling) 230

11.5 图形处理(Graphics Handling) 233

小结(Summary) 239

思考题(Points to Ponder Exercises) 239

实验(Experiments) 239

参考文献 241

购买PDF格式(9分)
返回顶部