我的C英语

发布 2021-05-15 00:11:28 阅读 4373

学习c英语。

programmed 编程。

memory 内存。

i/o device i/o设备。

function key 功能键。

mouse 鼠标。

cursor 光标。

sample run 运行示例。

algorithm 算法。

algorithm design 算法设计。

coding 编码。

compiler 编译器。

file 文件。

root name 根名。

extension 扩展名。

source file 源文件。

editing 编辑。

object file 目标文件。

executable file 可执行文件。

library 库。

linking 链接。

syntax rule 语法规则。

syntax error 语法错误。

bug (logic error)逻辑错误。

debugging 调试。

software engineering 软件工程。

ansi c (an-see)标准c

comment 注释。

program comment 程序注释。

library 库。

header file 头文件。

function 函数。

statement 语句。

body 函数的主体。

calling 调用。

argument 参数。

string 字符串。

data 数据。

newline 换行字符。

variable 变量。

declaring 声明。

integer 整型。

prompt 提示消息。

assignment statement 赋值语句。

return 返回。

data type 数据类型。

domain 值域。

floating-point number 浮点数。

expression 表达式。

term 项。

operator 运算符。

constant 常量。

evaluation 求值。

operand 操作数。

unary operator 一元运算符。

binary operator 二元运算符。

rules of precedence 优先级法则。

automatic type conversion 自动类型转换。

truncation 截尾。

type cast 强制类型转换。

formula 习惯用语。

programming idiom 程序设计习语。

paradigm 范例。

incrementing 自增。

decrementing 自减。

control statement 控制语句。

repeat-n-times idiom 重复n次习语。

iteration 迭代。

loop 循环。

cycle 周期。

index variable 下标变量。

initialization 初始化。

sentinel 标志。

conditional execution 条件执行。

conditional test 条件测试。

relational operator 关系运算符。

field width 字段宽度。

alignment 对齐方式。

left alignment 左对齐。

precision 精度。

padded 填充。

****** statement 简单语句。

embedded assignment 赋值嵌套。

multiple assignment 多重赋值。

associativity 结合性。

compound statement 复合语句。

nested 嵌套。

atomic data 原子数据。

logical operator 逻辑运算符。

truth table 真值表。

short-circuit evaluation 简化求值。

dangling-else problem 悬空else 问题。

cascading if statement 级联if语句。

control expression 控制表达式。

infinite loop 无限循环。

loop-and -a-half problem 半途退出。

function prototype 函数原型。

function body 函数体。

predicate function 谓词函数。

formal parameter 形式参数。

local variable 局部变量。

frame 帧。

stack frame 栈帧。

return address 返回地址。

procedure 过程。

decomposition 分解。

top-down design 自顶向下的设计。

stepwise refinement 逐步精化。

modular arithmetic 取模运算。

number theory 数论。

prime 素数。

desk-checking 桌面检查。

testing 测试。

numerical algorithm 数值算法。

successive approximation 连续逼近。

converge 收敛的。

error handling 错误处理。

series expansion 级数展开。

power series 幂级数。

portable 可移植。

implementor 实现者。

client 客户。

exporting 导出。

package 软件包。

abstraction 抽象。

coordinates 坐标。

text data 文本数据。

enumeration 枚举。

scalar type 标量类型。

character code 字符**。

character constant 字符常量。

special character 特殊字符。

escape sequence 转义序列。

octal notation 八进制计数法。

primitive operation 基本操作。

module 模块。

main module 主模块。

pseudocode 伪**。

token 记号。

lexical analysis 词法分析。

token scanning 记号扫描。

internal state 内部状态。

global variable 全局变量。

static 静态的。

private 私有的。

dynamic initialization 动态初始化。

static initialization 静态初始化。

default valued 默认值。

buffer 缓冲区。

filling 填充。

data structure 数据结构。

array 数组。

element 元素。

element type 元素类型。

array size 数组大小。

index 下标。

selection 选择。

selection expression 选择表达式。

address 地址。

allocation 分配。

base address 基地址。

offset 偏移量。

allocated size 分配长度。

effective size 有效长度。

subscript 下角标(数组元素的下标)multidimensional array 多维数组。

matrix 矩阵。

identity matrix 单位矩阵。

linear search algorithm 线性查找算法(从第一个开始,顺次查找)

binary search 二分查找。

sorting 排序。

selection sort 选择排序。

analysis of algorithm 算法分析。

pointer 指针。

lvalue (ell-value)左值。

base type 基本类型(指针指向的值的类型,称为指针的基本类型)

calling by reference 引用调用。

pointer arithmetic 指针运算。

postfix 后缀。

prefix 前缀。

我的C语言笔记高级

数组。1排序分交换法,选择法,插入排序,冒泡法,快速排序法。2交换法第i轮比较中,第i 1个数和后面所有的数都有一次比较,每进行一次比较,若后面的数大酒交换位置,每轮最多交换n i次很耗资源。第一轮 84 83 88 87 61不交换。交换。不交换。不交换。第二轮 88 83 84 87 61交换。...

我的C语言笔记中级

函数部分。1函数自己调用本身,这叫做递归。2注意建立自己的函数库。3如果有大量数据需要传递,可以用数组与指针。4实参的数量必须与形参相等,它们的类型必须匹配。5int func 是合法的。6函数返回值可以是除数组以外的的类型,也可是void类型,表示没有返回值。include 2 main 11 a...

C E开头的英语谚语

1.call a spade a spade.据实而言。2.can the leopard change his spots?an old dog can never alter its way of barking 江山易改,本性难移。3.care killed the cat.忧虑伤身。4.ca...