图书介绍

C语言程序设计PDF|Epub|txt|kindle电子书版本网盘下载

C语言程序设计
  • 朱晋蜀,李向阳主编 著
  • 出版社: 重庆:重庆大学出版社
  • ISBN:7562413436
  • 出版时间:1997
  • 标注页数:241页
  • 文件大小:4MB
  • 文件页数:250页
  • 主题词:

PDF下载


点此进入-本书在线PDF格式电子书下载【推荐-云解压-方便快捷】直接下载PDF格式图书。移动端-PC端通用
种子下载[BT下载速度快]温馨提示:(请使用BT下载软件FDM进行下载)软件下载地址页直链下载[便捷但速度慢]  [在线试读本书]   [在线获取解压码]

下载说明

C语言程序设计PDF格式电子书版下载

下载的文件为RAR压缩包。需要使用解压软件进行解压得到PDF格式图书。

建议使用BT下载工具Free Download Manager进行下载,简称FDM(免费,没有广告,支持多平台)。本站资源全部打包为BT种子。所以需要使用专业的BT下载软件进行下载。如BitComet qBittorrent uTorrent等BT下载工具。迅雷目前由于本站不是热门资源。不推荐使用!后期资源热门了。安装了迅雷也可以迅雷进行下载!

(文件页数 要大于 标注页数,上中下等多册电子书除外)

注意:本站所有压缩包均有解压码: 点击下载压缩包解压工具

图书目录

第一章 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/O183

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

热门推荐