为你推荐
Preface
前言
Chapter One Introduction to C
第1章 引言
1.1 Brief history of C(C语言简史)
1.2 Why programmers use C(为什么程序员爱用C语言)
1.3 Developing a C program(开发C程序)
1.4 Suggestions for learning C programming(学习C语言程序设计的建议)
Chapter Two C Data Types
第2章 C数据类型
2.1 Constants(常量)
2.2 Variables(变量)
2.3 Simple output to the screen(简单的屏幕输出)
2.4 Comments(注释)
2.5 Data types(数据类型)
2.6 Data type sizes(数据类型的大小)
Programming pitfalls
Quick syntax reference
Exercises
Chapter Three Simple Arithmetic Operations and Expressions
第3章 简单的算术运算和表达式
3.1 C operators(C运算符)
3.2 Operator precedence(运算符优先级)
3.3 Type conversions and casts(类型转换与强制类型转换)
Programming pitfalls
Quick syntax reference
Exercises
Chapter Four Keyboard Input and Screen Output
第4章 键盘输入和屏幕输出
4.1 Simple keyboard input(简单的键盘输入)
4.2 Using a width and precision specification in printf()[在函数printf()中使用域宽和精度说明]
4.3 Single-character input and output(单个字符的输入和输出)
Programming pitfalls
Quick syntax reference
Exercises
Chapter Five Control Statements:if and switch
第5章 控制语句:if和switch
5.1 The if statement(if语句)
5.2 The if-else statement(if-else语句)
5.3 Logical operators(逻辑运算符)
5.4 Nested if statements(嵌套的if语句)
5.5 The switch statement(switch语句)
5.6 The conditional operator?:(条件运算符)
Programming pitfalls
Quick syntax reference
Exercises
Chapter Six Iterative Control Statements:while,do-while,and for
第6章 循环控制语句:while、do-while和for
6.1 The while statement(while语句)
6.2 The do-while loop(do-while循环)
6.3 The for statement(for语句)
6.4 Nested loops(嵌套的循环)
Programming pitfalls
Quick syntax reference
Exercises
Chapter Seven Arrays
第7章 数组
7.1 Introduction to arrays(引言)
7.2 Initialising arrays(数组初始化)
7.3 Two-dimensional arrays(二维数组)
7.4 Initialising two-dimensional arrays(二维数组的初始化)
7.5 Multi-dimensional arrays(多维数组)
Programming pitfalls
Quick syntax reference
Exercises
Chapter Eight Pointers
第8章 指针
8.1 Variable addresses(变量的地址)
8.2 Pointer variables(指针变量)
8.3 The dereference operator*(解引用运算符*)
8.4 Why use pointers?(为什么使用指针)
Programming pitfalls
Quick syntax reference
Exercises
Chapter Nine Pointers and Arrays
第9章 指针和数组
9.1 Pointers and one-dimensional arrays(指针和一维数组)
9.2 Pointers and multi-dimensional arrays(指针和多维数组)
9.3 Dynamic memory allocation(动态内存分配)
Programming pitfalls
Quick syntax reference
Exercises
Chapter Ten Strings
第10章 字符串
10.1 String literals(字符串)
10.2 Long character strings(长字符串)
10.3 Strings and arrays(字符串和数组)
10.4 Displaying a string(显示一个字符串)
10.5 The puts()function[puts()函数]
10.6 The gets()function[gets()函数]
10.7 Accessing individual characters of a string(访问字符串中的单个字符)
10.8 Assigning a string to a pointer(用字符串为字符指针赋值)
10.9 String functions(字符串处理函数)
10.10 Converting numeric strings to numbers(数值字符串向数值的转换)
10.11 Arrays of strings(字符串数组)
Programming pitfalls
Quick syntax reference
Exercises
Chapter Eleven Functions
第11章 函数
11.1 Introduction(引言)
11.2 Function arguments(函数参数)
11.3 Returning a value from a function(从函数返回一个值)
11.4 Passing arguments by value(按值传参)
11.5 Passing arguments by reference(按引用传参)
11.6 Changing arguments in a function(在函数中改变实参的值)
11.7 Passing a one-dimensional array to a function(向函数传递一维数组)
11.8 Passing a multi-dimensional array to a function(向函数传递多维数组)
11.9 Storage classes(变量的存储类型)
11.10 Command line arguments(命令行参数)
11.11 Mathematical functions(数学函数)
11.12 Recursion
Programming pitfalls
Quick syntax reference
Exercises
Chapter Twelve Structures
第12章 结构体
12.1 Defining a structure(定义结构体)
12.2 Pointers to structures(结构体指针)
12.3 Initialising a structure variable(结构体变量的初始化)
12.4 Passing a structure to a function(向函数传递结构体变量)
12.5 Nested structures(嵌套的结构体)
12.6 Including a structure template from a file(从文件中引用结构体模板)
12.7 The typedef statement(typedef语句)
12.8 Arrays of structures(结构体数组)
12.9 Enumerated data types(枚举数据类型)
Programming pitfalls
Quick syntax reference
Exercises
Chapter Thirteen File Input and Output
第13章 文件的输入和输出
13.1 Binary and ASCII(text)files[二进制文件和ASCII(文本)文件]
13.2 Opening and closing files(文件的打开和关闭)
13.3 Reading a character from a file using fgetc()[使用函数fgetc()从文件中读字符]
13.4 Writing a character to a file using fputc()[使用函数fputc()向文件中写字符]
13.5 Readingastringofcharactersfromafileusingfgets()[使用函数fgets()从文件中读字符串]
13.6 Writing a string of characters to a file using fputs()[使用函数fputs()向文件中写字符串]
13.7 Formatted input-output to a file using fscanf()and fprintf()[使用函数fscanf()和fprintf()进行文件的格式化读写]
13.8 The standard files(标准文件)
13.9 Block input-output using fread()and fwrite()[使用函数fread()和fwrite()进行块读写]
13.10 Rewinding a file using rewind()[使用函数rewind()对文件重定位]
13.11 Random access of files using fseek()[使用函数fseek()随机访问文件]
13.12 Finding the position in a file using ftell()[使用函数ftell()查找文件的当前位置]
13.13 Deleting a file using remove()[使用函数remove()删除文件]
Programming pitfalls
Quick syntax reference
Exercises
Chapter Fourteen The C Preprocessor
第14章 C编译预处理
14.1 Including files(包含文件)
14.2 Defining macros(定义宏)
14.3 Macro parameters(带参数的宏)
14.4 Macros and functions(宏和函数)
14.5 Some useful macros(一些有用的宏)
14.6 Conditional directives(条件编译预处理指令)
14.7 Character-testing macros(字符检测宏)
Programming pitfalls
Quick syntax reference
Exercises
Appendix A
List of C Keywords
Appendix B
Precedence and Associativity of C Operators
Appendix C
ASCII Character Codes
Appendix D
Fundamental C Built-in Data Types
买过这本书的人还买过
读了这本书的人还在读
同类图书排行榜