您的位置:首页 > 编程语言 > C语言/C++

C primer plus第2章(C语言概述)习题

2013-01-06 09:06 441 查看
1.如何称呼C程序的基本模块?

函数。

2.什么是语法错误?给出它的一个英语例子和C语言例子。

英语: Me speak English good.

C语言: printf(“漏掉了后面的分号”)

3.什么是语义错误?给出它的一个英语例子和C语言例子。

英语: This sentence is excellent Italian.

C语言: thrice_n = 3+n;

4.

include <studio.h>
int main(void)

{

int s;

s = 52;

printf("There are %d weeks in a year.", s);

return 0;

}

5.

a.

Baa Baa Black Sheep.Have you any wool?

b.

Begone!

O creature of lard!

c.

What?

No/nBonzo?

d.

2+2=4

6.下面那几个是C的关键字

int char

7.

int words = 3020;

int lines = 350;

printf("There where %d words and %d lines",words,lines);

8.

7行 a=5,b=2

8行 a=5,b=5

9行 a=5,b=5
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: