C primer plus 第六版 第6版 002章 第二章 复习题 答案 中文

1.C语言的基本模块是什么?
函数

2.什么是语法错误?写出一个英语例子和C语言例子
语法错误违反了组成语句或程序的规则。
Me Speak English Good!
print"Where are the parenthese?"

3.什么是语义错误?写出一个英语例子和C语言例子
语意错误是指含义错误。
这是一个有语意错误的英文例子:This is entence isexcellent Czech。
C语言例子: thrice_n = 3 + n;

4.略

5.略

6.在main int function char = 中,哪些是C语言的关键字?
main是函数名
function是函数的意思
=是赋值运算符
int 和 char 是关键字

7.如何以下面格式输出变量words和lines的值(这里,3020和350代表两个变量的值)?
There were 3020 words and 350 lines。
printf("There were %d words and %d lines",words,lines);

8.略

9.略

你可能感兴趣的:(C primer plus 第六版 第6版 002章 第二章 复习题 答案 中文)