c语言 英文教材,C语言教程(英文版·第4版)-程序员宅基地

技术标签: c语言 英文教材  

PrefaCe

Chapter 0

Starting from Zero

0.1 Why C?

0.2 ANSI C Standard

0.3 From C to C++

0.4 From C and C++to java

Chapter 1

An Overview of C

1.1 Programming and Preparation

1.2 Program Output

1.3 Variables,Expressions,and Assignment

1.4 The Use of #define and #include

1.5 The USe of printf()and Scanf()

1.6 Flow of Control

1.7 Functions

Call-by-value

1. 8 ArrayS,Strings,and Pointers

Arrays

Strings

Pointers

1.9 Files

1.10 Operating System Considerations

Writing and Running a C Program

Interrupting a Program

Typing an End-of-file Signal

Redirection of the Input and the Output

Summary

Exercises

Chapter 2

Lexical Elements, Operators, and the C System

2.1 Characters and Lexical Elements

2.2 Syntax Rules

2.3 Comments

2.4 Keywords

2.5 Identifiers

2.6 Constants

2.7 String Constants

2.8 Operators and Punctuators

2.9 Precedence and Associativity of Operators

2.10 Increment and Decrement Operators

2.11 Assignment Operators

2.12 An Example: Computing Powers of 2

2.13 The C System

The Preprocessor

The Standard Library

Summary

Exercises

Chapter 3

The Fundamental Data Types

3.1 Declarations, Expressions, and Assignment

3.2 The Fundamental Data Types

3.3 Characters and the Data Type char

3.4 The Data Type int

3.5 The integral Types short, long, and unsigned

3.6 The Floating Types

3.7 The Use of typedef

3.8 The sizeof Operator

3.9 The Use of getchar() and putchar()

3.10 Mathematical Functions

The Use of abs() and fabs()

UNIX and the Mathematics Library

3.11 Conversions and Casts

The Integral Promotions

The Usual Arithmetic Conversions

Casts

3.12 Hexadecimal and Octal Constants

C.13 Summary

Exercises

Chapter 4

Flow of Control

4.1 Relational, Equality, and Logical Operators

4.2 Relational Operators and Expressions

4.3 Equality Operators and Expressions

4.4 Logical Operators and Expressions

Short-circuit Evaluation

4.5 The Compound Statement

4.6 The Expression and Empty Statement

4.7 The if and the if-else Statements

4.8 The while Statement

4.9 The for Statement

4.10 An Example: Boolean Variables

4.11 The Comma Operator

4.12 The do Statement

4.13 An Example: Fibonacci Numbers

4.14 The goto Statement

4.15 The break and continue Statements

4.16 The switch Statement

4.17 The Conditional Operator

Summary

Exercises

Chapter 5

Functions

5.1 Function Definition

5.2 The return Statement

5.3 Function Prototypes

Function Prototypes in C++

5.4 An Example: Creating a Table of Powers

5.5 Function Declarations from the Compiler's Viewpoint

Limitations

5.6 An Alternate Style for Function Definition Order

5.7 Function Invocation and Call-by-Value

5.8 Developing a Large Program

What Constitutes a Large Program?

5.9 Using Assertions

5.10 Scope Rules

Parallel and Nested Blocks

Using a Block for Debugging

5.11 Storage Classes

The Storage Class auto

The Storage Class extern

The Storage Class register

The Storage Class static

5.12 Static External Variables

5.13 Default Initialization

5.14 Recu rsion

Efficiency Considerations

5.15 An Example: The Towers of Hanoi

Summary

Exercises

Chapter 6

Arrays, Pointers, and Strings

6.1 One-dimensional Arrays

Initialization

Subscripting

6.2 Pointers

6.3 Call-by-Reference

6.4 The Relationship Between Arrays and Pointers

6.5 Pointer Arithmetic and Element Size

6.6 Arrays as Function Arguments

6.7 An Example: Bubble Sort

6.8 Dynamic Memory Allocation With calloc() and malloc()

Offsetting the Pointer

6.9 An Example: Merge and Merge Sort

6.10 Strings

6.11 String-Handling Functions in the Standard Library

6.12 Multidimensional Arrays

Two-dimensional Arrays

The Storage Mapping Function

Formal Parameter Declarations

Three-dimensional Arrays

Initialization

The Use of typedef

6.13 Arrays of Pointers

6.14 Arguments to main()

6.15 Ragged Arrays

6.16 Functions as Arguments

Functions as Formal Parameters in Function Prototypes

6.17 An Example: Using Bisection to Find the Root of a Function

The Kepler Equation

6.18 Arrays of Pointers to Function

6.19 The Type Qualifiers const and volati 1 e

Summary

Exercises

Chapter 7

Bitwise Operators and Enumeration Types

7.1 Bitwise Operators and Expressions

Bitwise Complement

Two's Complement

Bitwise Binary Logical Operators

Left and Right Shift Operators

7.2 Masks

7.3 Software Tools: Printing an int Bitwise

7.4 Packing and Unpacking

Multibyte Character Constants

7.5 Enumeration Types

7.6 An Example: The Game of Paper, Rock, Scissors

Summary

Exercises

Chapter 8

The Preprocessor

8.1 The Use of #include

8.2 The Use of #define

Syntactic Sugar

8.3 Macros with Arguments

8.4 The Type Definitions and Macros in stddef, h

8.5 An Example: Sorting with qsort()

8.6 An Example: Macros with Arguments

8.7 The Macros in stdio, h and ctype.h

8.8 Conditional Compilation

8.9 The Predefined Macros

8.10 The Operators # and ##

8.11 The assert() Macro

8.1 2 The Use of #error and #pragma

8.1 3 Line Numbers

8.14 Corresponding Functions

8.15 An Example: Quicksort

Summary

Exercises

Chapter 9

Structures and Unions

9.1 Structures

9.2 Accessing Members of a Structure

9.3 Operator Precedence and Associativity: A Final Look

9.4 Using Structures with Functions

9.5 Initialization of Structures

9.6 An Example: Playing Poker

9.7 Unions

9.8 Bit Fields

9.9 An Example: Accessing Bits and Bytes

9.10 The ADT Stack

Summary

Exercises

Chapter 10

Structures and List Processing

10.1 Self-referential Structures

10.2 Linear Linked Lists

Storage Allocation

10.3 List Operations

10.4 Some List Processing Functions

Insertion

Deletion

10.5 Stacks

10.6 An Example: Polish Notation and Stack Evaluation

10.7 Queues

10.8 Binary Trees

Binary Tree Traversal

Creating Trees

10.9 General Linked Lists

Traversal

The Use of calloc() and Building Trees

Summary

Exercises

Chapter 1 1

Input/Output and the Operating System

1 1.1 The Output Function printfO

11.2 The Input FunctionscanfO

11.3 The FunctionsfprintfO, fscanf(),sprintfO,

and sscanf()

11.4 The Functionsfopen() and fcloseO

11.5 An Example: Double Spacing a File

11.6 Using Temporary Files and Graceful Functions

11.7 Accessing a File Randomly

11.8 File Descriptor Input/Output

11.9 File Access Permissions

11.10 Executing Commands from Within a C Program

11.11 Using Pipes from Within a C Program

11.12 Environment Variables

11.13 The C Compiler

11.14 Using the Profiler

11.15 Libraries

11.16 How to TimeCCode

11.17 The Use of make

11.18 The Use of touch

11.19 Other Useful Tools

Summary

Exercises

Chapter 12

Advanced Applications

12.1 Creating a Concurrent Process with fork()

12.2 Overlaying a Process: the exec... () Family

Using the spawn...() Family

12.3 Interprocess Communication Using pi pe()

12.4 Signals

1 2.5 An Example: The Dining Philosophers

1 2.6 Dynamic Allocation of Matrices

Why Arrays of Arrays Are Inadequate

Building Matrices with Arrays of Pointers

Adjusting the Subscript Range

Allocating All the Memory at Once

1 2.7 Returning the Status

Summary

Exercises

Chapter 13

Moving from C to C++

13.1 Output

13.2 Input

13.3 Functions

13.4 Classes and Abstract Data Types

13.5 Overloading

13.6 Constructors and Destructors

13.7 Object-oriented Programming and Inheritance

13.8 Polymorphism

13.9 Templates

13.10 C++ Exceptions

13.11 Benefits of Object-oriented Programming

Summary

Exercises

Chapter 14

Moving from C to Java

14.1 Output

14.2 Variables and Types

14.3 Classes and Abstract Data Types

14.4 Overloading

14.5 Construction and Destruction of Class Types

14.6 Object-oriented Programming and Inheritance

14.7 Polymorphism and Overriding Methods

14.8 Applets

14.9 Java Exceptions

14.10 Benefits of Java and OOP

Summary

Exercises

Appendix A

The Standard Library

A.1 Diagnostics:

A.2 Character Handling:

Testing a Character

Mapping a Character

A.3 Errors:

A.4 Floating Limits:

A.5 Integral Limits:

A.6 Localization:

A.7 Mathematics:

A.8 Nonlocal Jumps:

A.9 Signal Handling:

A. 10 Variable Arguments:

A. 11 Common Definitions:

A. 12 Input/Output:

Opening, Closing, and Conditioning a File

Accessing the File Position Indicator

Error Handling

Character Input/Output

Formatted Input/Output

Direct Input/Output

Removing or Renaming a File

A.13 General Utilities:

Dynamic Allocation of Memory

Searching and Sorting

Pseudo Random-Number Generator

Communicating with the Environment

Integer Arithmetic

String Conversion

Multibyte Character Functions

Multibyte String Functions

Leaving the Program

A.14 Memory and String Handling:

Memory-Handling Functions

String-Handling Functions

A.15 Date and Time:

Accessing the Clock

Accessing the Time

A.16 Miscellaneous

File Access

Using File Descriptors

Creating a Concurrent Process

Overlaying a Process

Interprocess Communication

Suspending Program Execution

Appendix B

Language Syntax

B.1 Prog ram

B.2 Function Definition

B.3 Declaration

B.4 Statement

B.5 Expression

B.6 Constant

B.7 String Literal

B.8 Preprocessor

Appendix C

ANSI C Compared to Traditional C

C.1 Types

C.2 Constants

C.3 Declarations

C.4 Initializations

C.5 Expressions

C.6 Functions

C.7 Conversions

C.8 Array Pointers

C.9 Structures and Unions

C.10 Preprocessor

C.11 Header Files

C.12 Miscellaneous

Appendix D

ASCII Character Codes

Appendix E

Operator Precedence and Associativity

Index

版权声明:本文为博主原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。
本文链接:https://blog.csdn.net/weixin_39622419/article/details/117104337

智能推荐

while循环&CPU占用率高问题深入分析与解决方案_main函数使用while(1)循环cpu占用99-程序员宅基地

文章浏览阅读3.8k次,点赞9次,收藏28次。直接上一个工作中碰到的问题,另外一个系统开启多线程调用我这边的接口,然后我这边会开启多线程批量查询第三方接口并且返回给调用方。使用的是两三年前别人遗留下来的方法,放到线上后发现确实是可以正常取到结果,但是一旦调用,CPU占用就直接100%(部署环境是win server服务器)。因此查看了下相关的老代码并使用JProfiler查看发现是在某个while循环的时候有问题。具体项目代码就不贴了,类似于下面这段代码。​​​​​​while(flag) {//your code;}这里的flag._main函数使用while(1)循环cpu占用99

【无标题】jetbrains idea shift f6不生效_idea shift +f6快捷键不生效-程序员宅基地

文章浏览阅读347次。idea shift f6 快捷键无效_idea shift +f6快捷键不生效

node.js学习笔记之Node中的核心模块_node模块中有很多核心模块,以下不属于核心模块,使用时需下载的是-程序员宅基地

文章浏览阅读135次。Ecmacript 中没有DOM 和 BOM核心模块Node为JavaScript提供了很多服务器级别,这些API绝大多数都被包装到了一个具名和核心模块中了,例如文件操作的 fs 核心模块 ,http服务构建的http 模块 path 路径操作模块 os 操作系统信息模块// 用来获取机器信息的var os = require('os')// 用来操作路径的var path = require('path')// 获取当前机器的 CPU 信息console.log(os.cpus._node模块中有很多核心模块,以下不属于核心模块,使用时需下载的是

数学建模【SPSS 下载-安装、方差分析与回归分析的SPSS实现(软件概述、方差分析、回归分析)】_化工数学模型数据回归软件-程序员宅基地

文章浏览阅读10w+次,点赞435次,收藏3.4k次。SPSS 22 下载安装过程7.6 方差分析与回归分析的SPSS实现7.6.1 SPSS软件概述1 SPSS版本与安装2 SPSS界面3 SPSS特点4 SPSS数据7.6.2 SPSS与方差分析1 单因素方差分析2 双因素方差分析7.6.3 SPSS与回归分析SPSS回归分析过程牙膏价格问题的回归分析_化工数学模型数据回归软件

利用hutool实现邮件发送功能_hutool发送邮件-程序员宅基地

文章浏览阅读7.5k次。如何利用hutool工具包实现邮件发送功能呢?1、首先引入hutool依赖<dependency> <groupId>cn.hutool</groupId> <artifactId>hutool-all</artifactId> <version>5.7.19</version></dependency>2、编写邮件发送工具类package com.pc.c..._hutool发送邮件

docker安装elasticsearch,elasticsearch-head,kibana,ik分词器_docker安装kibana连接elasticsearch并且elasticsearch有密码-程序员宅基地

文章浏览阅读867次,点赞2次,收藏2次。docker安装elasticsearch,elasticsearch-head,kibana,ik分词器安装方式基本有两种,一种是pull的方式,一种是Dockerfile的方式,由于pull的方式pull下来后还需配置许多东西且不便于复用,个人比较喜欢使用Dockerfile的方式所有docker支持的镜像基本都在https://hub.docker.com/docker的官网上能找到合..._docker安装kibana连接elasticsearch并且elasticsearch有密码

随便推点

Python 攻克移动开发失败!_beeware-程序员宅基地

文章浏览阅读1.3w次,点赞57次,收藏92次。整理 | 郑丽媛出品 | CSDN(ID:CSDNnews)近年来,随着机器学习的兴起,有一门编程语言逐渐变得火热——Python。得益于其针对机器学习提供了大量开源框架和第三方模块,内置..._beeware

Swift4.0_Timer 的基本使用_swift timer 暂停-程序员宅基地

文章浏览阅读7.9k次。//// ViewController.swift// Day_10_Timer//// Created by dongqiangfei on 2018/10/15.// Copyright 2018年 飞飞. All rights reserved.//import UIKitclass ViewController: UIViewController { ..._swift timer 暂停

元素三大等待-程序员宅基地

文章浏览阅读986次,点赞2次,收藏2次。1.硬性等待让当前线程暂停执行,应用场景:代码执行速度太快了,但是UI元素没有立马加载出来,造成两者不同步,这时候就可以让代码等待一下,再去执行找元素的动作线程休眠,强制等待 Thread.sleep(long mills)package com.example.demo;import org.junit.jupiter.api.Test;import org.openqa.selenium.By;import org.openqa.selenium.firefox.Firefox.._元素三大等待

Java软件工程师职位分析_java岗位分析-程序员宅基地

文章浏览阅读3k次,点赞4次,收藏14次。Java软件工程师职位分析_java岗位分析

Java:Unreachable code的解决方法_java unreachable code-程序员宅基地

文章浏览阅读2k次。Java:Unreachable code的解决方法_java unreachable code

标签data-*自定义属性值和根据data属性值查找对应标签_如何根据data-*属性获取对应的标签对象-程序员宅基地

文章浏览阅读1w次。1、html中设置标签data-*的值 标题 11111 222222、点击获取当前标签的data-url的值$('dd').on('click', function() { var urlVal = $(this).data('ur_如何根据data-*属性获取对应的标签对象

推荐文章

热门文章

相关标签