Electronic numerical integrator and computer 電子數字積分器和計算機
Patch panel 配線板
Von Neumann architecture 馮.諾伊曼體系結構
Integrated circuit 集成電路
Chip 芯片
Large-scale integration 大規模集成
Microprocessor 微處理器
Hardware 硬件
Software 軟件
Programmed 編程
Bus 總線
Cpu central processing unit 中央處理器
Primary storage 主存儲器
Memory 內存
Secondary storage 輔助存儲器
Disk 磁盤
Hard disk 硬盤
Floppy disk 軟盤
I/O device I/O設備
Function key 功能鍵
Mouse 鼠標
Cursor 光標
Sample run 運行示例
Algorithm 算法
Algorithm design 算法設計
Coding 編碼
Higher-level language 高級語言
Compiler 編譯器
File 文件
Root name 根名
Extension 擴展名
Source file 源文件
Editing 編輯
Object file 目標文件
Executable file 可執行文件
Library 庫
Linking 鏈接
Syntax rule 語法規則
Syntax error 語法錯誤
Bug 邏輯錯誤
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 返回
format code 格式碼
reductionism 歸約論
holism 整體論
data type 數據類型
domain 值域
floating-point number 浮點數
expression 表達式
term 項
operator 運算符
constant 常量
evaluation 求值
subexpression 子表達式
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 填充
simple statement 簡單語句
embedded assignment 賦值嵌套
multiple assignment 多重賦值
associativity 結合性
compound statement 復合語句
nested 嵌套
atomatic data 原子數據
logical operator 邏輯運算符
truth table 真值表
short-circuit evaluation 簡化求值
guard 監護條件
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 素數
cryptography 密碼學
loop invariant 循環不變式
desk-cheching 桌面檢查
testing 測試
tradeoff 權衡
numerical algorithm 數值算法
successive approximation 連續逼近
converge 收斂的
error handling 錯誤處理
series expansion 級數展開
power series 冪級數
portable 可移植
implementor 實現者
client 客戶
exporting 導出
package 軟件包
abstraction 抽象
coordinates 坐標
text data 文本數據
enumeration 枚舉
typedef 定義類型
scalar type 標量類型
character code 字符代碼
character constant 字符常量
special character 特殊字符
printing charater 可打印字符
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 前綴