string 字符串 application 应用函数: call 调用 return value 返回值 function 函数 declare 声明 `parameter 参数 static 静态的 extern 外部的指针: pointer 指针 argument 参数 array 数组 declaration 声明 represent 表示 manipulate 处理 结构体、共用体、链表: structure 结构 member 成员 tag 标记 function 函数...
string 字符串 data 数据 newline 换行字符 variable 变量 declaring 声明 integer 整型 prompt 提示消息 assignment statement 赋值语句 return 返回 format code 格式码 reductionism 归约论 holism 整体论 data type 数据类型 domain 值域 c语言必背专业词汇 ...
C/C++ language provides asimple assignment operatorthat is"=", but some of the otherassignment operators(which are the combination of assignment and other operators) can be used. The assignment operators are, Note:On the right side, a value, expression, or any variable can be used. 1) Simp...
In C programming, assignment operators are used to assign values to variables. The simple assignment operator is =. C also supports shorthand assignment operators that combine an operation with assignment, making the code more concise. Key Topics: Simple Assignment Operator Shorthand Addition Assignment...
accaccaccacc*=a;printf("Line 4 - *= Operator Example, Value of c = %d\n",c);c/=a;printf("Line 5 - /= Operator Example, Value of c = %d\n",c);c=200;c%=a;printf("Line 6 - %%= Operator Example, Value of c = %d\n",c);c<<=2;printf("Line 7 - <<= Operator Exam...
7. string 字符串 8. application 应用 函数: 1.call 调用 2.return value 返回值 3.function 函数 4. declare 声明 5. `parameter 参数 6.static 静态的 7.extern 外部的 指针: 1. pointer 指针 2. argument 参数 3. array 数组 4. declaration 声明 ...
string_literal operator punctuator 不在上述范围内的任一非空白符 2. 关键字 keyword: auto double int struct break else long switch case enum register typedef char extern return union const float short unsigned for signed void default goto sizeof volatile do ...
| <string> | "(" <expression> ")" <constant> ::= <integer-constant> //整型常量 | <character-constant> //字符常量 | <floating-constant> //浮点常量 | <enumeration-constant> //枚举常量 <expression> ::= <assignment-expression> //赋值表达式 ...
数组: ( operator and expression ) 汉语 英语 字符 character1. array 数组 常量 constant 字符串 string2. reference 引用 变量 variable 应用 application3. element 元素 标识符 identify 指针 pointer4. address 地址 关键字 keywords 参数 argument5. sort 排序 符号 sign 数组 array6. character 字符 运算符...
一、C语言常见专业词汇中英文对照 英文中文 identifier标识符 keyword关键字 operator运算符 constant常量 pointer指针 Structure结构体 Include包含(导入头文件) stdio.h输入输出头文件 void不返回任何值 main主要 printf打印、输出 IDE集成开发环境 sourceFile源文件 warning警告 Project工程 int整型 shortint短整型 unsigned...