<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
  <channel>
    <title>鼠侠网 - 《零起步快速通透C语言》读者服务专区</title>
    <link>http://www.lizhongc.com/forum-49-1.html</link>
    <description>Latest 20 threads of 《零起步快速通透C语言》读者服务专区</description>
    <copyright>Copyright(C) 鼠侠网</copyright>
    <generator>Discuz! Board by Comsenz Inc.</generator>
    <lastBuildDate>Wed, 13 May 2026 11:30:24 +0000</lastBuildDate>
    <ttl>60</ttl>
    <image>
      <url>http://www.lizhongc.com/static/image/common/logo_88_31.gif</url>
      <title>鼠侠网</title>
      <link>http://www.lizhongc.com/</link>
    </image>
    <item>
      <title>4.27--原书第4章习题的答案和答疑</title>
      <link>http://www.lizhongc.com/thread-885-1-1.html</link>
      <description><![CDATA[第4章习题
[hr]
1．请问下面的注释有问题吗？如果有问题，请指出问题所在。
/*********以下是n和sum的声明********
*******************************
int n/*提供参与累加的数字*/, sum/*存放累加结果*/;
答：问题在于多行注释没有对应的”*/“。

2．请问下面的声明有 ...]]></description>
      <category>《零起步快速通透C语言》读者服务专区</category>
      <author>站长</author>
      <pubDate>Thu, 07 May 2026 02:52:43 +0000</pubDate>
    </item>
    <item>
      <title>4.26--本单元学习效果检测（中高难度）</title>
      <link>http://www.lizhongc.com/thread-884-1-1.html</link>
      <description><![CDATA[]]></description>
      <category>《零起步快速通透C语言》读者服务专区</category>
      <author>站长</author>
      <pubDate>Thu, 07 May 2026 02:50:54 +0000</pubDate>
    </item>
    <item>
      <title>4.25--原书检测点4-16的答案和答疑</title>
      <link>http://www.lizhongc.com/thread-883-1-1.html</link>
      <description><![CDATA[检测点4-16
[hr]
1．以下说法正确的是  ABCD  。
A．一个复合语句是一个块
B．一个while语句是一个块
C．一个for语句是一个块
D．main函数的函数体是一个块

2．在源文件c0410.c中，标识符sum的作用域从哪里开始，到哪里结束？
答：从它声明之后开始，一直到组成main函 ...]]></description>
      <category>《零起步快速通透C语言》读者服务专区</category>
      <author>站长</author>
      <pubDate>Thu, 07 May 2026 02:49:05 +0000</pubDate>
    </item>
    <item>
      <title>4.24--原书检测点4-15的答案和答疑</title>
      <link>http://www.lizhongc.com/thread-882-1-1.html</link>
      <description><![CDATA[检测点4-15
[hr]
1．在组成for语句的圆括号内，第一部分可以是声明也可以是表达式，这一部分在进入循环时处理，而且只处理1次。圆括号内的三个部分都可以省略，但是分号必须保留。

2．在源文件c0409.c中，为什么作为for语句循环体的分号是语句，而出现在这个程序内的其 ...]]></description>
      <category>《零起步快速通透C语言》读者服务专区</category>
      <author>站长</author>
      <pubDate>Thu, 07 May 2026 02:47:51 +0000</pubDate>
    </item>
    <item>
      <title>4.23--原书检测点4-14的答案和答疑</title>
      <link>http://www.lizhongc.com/thread-881-1-1.html</link>
      <description><![CDATA[检测点4-14
[hr]
1．给定以下从1加到100的程序，请将do语句的控制表达式补充完整，并解释你这样写的原因，要求使用递增运算符“++”（已知递增运算符的优先级高于关系运算符）。
# include 


int main (void)
{
    int n = 1, sum = 0;


    do]]></description>
      <category>《零起步快速通透C语言》读者服务专区</category>
      <author>站长</author>
      <pubDate>Thu, 07 May 2026 02:46:48 +0000</pubDate>
    </item>
    <item>
      <title>4.22--第4章第4.6～4.10节的重点、难点和答疑</title>
      <link>http://www.lizhongc.com/thread-880-1-1.html</link>
      <description><![CDATA[本单元的内容相对简单，重要的知识点包括：
[*]do语句的语法形式和执行过程；
[*]for语句的语法形式和执行过程；
[*]在for语句的圆括号内，三个语法成分都可以省略，但分隔符”;”不能省略。特别地，圆括号内的第一部分可以是声明，可以将只在for语句内使用的标识符声明 ...]]></description>
      <category>《零起步快速通透C语言》读者服务专区</category>
      <author>站长</author>
      <pubDate>Wed, 06 May 2026 09:49:13 +0000</pubDate>
    </item>
    <item>
      <title>4.21--本单元学习效果检测</title>
      <link>http://www.lizhongc.com/thread-879-1-1.html</link>
      <description><![CDATA[]]></description>
      <category>《零起步快速通透C语言》读者服务专区</category>
      <author>站长</author>
      <pubDate>Wed, 06 May 2026 09:47:18 +0000</pubDate>
    </item>
    <item>
      <title>4.20--原书检测点4-13的答案和答疑</title>
      <link>http://www.lizhongc.com/thread-878-1-1.html</link>
      <description><![CDATA[检测点4-13
[hr]
1．表达式sum += n ++可替换为sum = sum + n ++。
（1）在表达式sum = sum + n ++里，各个子表达式的作用分别是什么？
答：左边的sum代表对象；右边的sum既代表对象，也计算出一个值；n代表对象。子表达式sum + n ++计算一个值，它的子表达式n ++既计算 ...]]></description>
      <category>《零起步快速通透C语言》读者服务专区</category>
      <author>站长</author>
      <pubDate>Wed, 06 May 2026 09:37:21 +0000</pubDate>
    </item>
    <item>
      <title>4.19--原书检测点4-12的答案和答疑</title>
      <link>http://www.lizhongc.com/thread-877-1-1.html</link>
      <description><![CDATA[检测点4-12
[hr]
1．在表达式sum = sum + n里，各个子表达式的作用分别是什么？
答：左侧的sum代表对象，右侧的sum既代表对象，也要计算出一个值；n既代表对象，也要计算出一个值；子表达式sum + n计算出一个值。

2．运算符的优先级是指先得到哪个运算符的结果，对吗？ ...]]></description>
      <category>《零起步快速通透C语言》读者服务专区</category>
      <author>站长</author>
      <pubDate>Wed, 06 May 2026 09:33:58 +0000</pubDate>
    </item>
    <item>
      <title>4.18--原书检测点4-11的答案和答疑</title>
      <link>http://www.lizhongc.com/thread-876-1-1.html</link>
      <description><![CDATA[检测点4-11
[hr]
1．初始化器的作用是什么？
答：指定对象在创建时的初始值。

2．一次性声明三个代表int类型的对象的标识符var1、var2和var3，并将var2所代表的对象初始化为99。
答：int var1, var2 = 99, var3;

[hr]有任何疑问或者新的想法与答案，欢迎在下面提出。
 ...]]></description>
      <category>《零起步快速通透C语言》读者服务专区</category>
      <author>站长</author>
      <pubDate>Wed, 06 May 2026 09:33:19 +0000</pubDate>
    </item>
    <item>
      <title>4.17--第4章第4.3～4.5节的重点、难点和答疑</title>
      <link>http://www.lizhongc.com/thread-875-1-1.html</link>
      <description><![CDATA[本单元的内容相对简单，重要的知识点包括：1，在对象的声明中使用初始化器为对象指定初始值；2，运算符的优先级。在复杂的表达式中，运算符的优先级决定谁优先与操作数结合，并最终决定整个表达式的类型。优先级适用于不同种类的运算符，前面讲过的结合性适用于同种类的 ...]]></description>
      <category>《零起步快速通透C语言》读者服务专区</category>
      <author>站长</author>
      <pubDate>Wed, 06 May 2026 06:32:41 +0000</pubDate>
    </item>
    <item>
      <title>4.16--高难度拓展练习题</title>
      <link>http://www.lizhongc.com/thread-861-1-1.html</link>
      <description><![CDATA[]]></description>
      <category>《零起步快速通透C语言》读者服务专区</category>
      <author>站长</author>
      <pubDate>Sun, 03 May 2026 14:21:21 +0000</pubDate>
    </item>
    <item>
      <title>4.15--本单元学习效果检测</title>
      <link>http://www.lizhongc.com/thread-860-1-1.html</link>
      <description><![CDATA[]]></description>
      <category>《零起步快速通透C语言》读者服务专区</category>
      <author>站长</author>
      <pubDate>Sun, 03 May 2026 10:23:47 +0000</pubDate>
    </item>
    <item>
      <title>4.14--原书检测点4-10的答案与答疑</title>
      <link>http://www.lizhongc.com/thread-849-1-1.html</link>
      <description><![CDATA[检测点4-10
[hr]
1．选择填空：前缀递增表达式的值是前缀递增运算符的操作数所代表的对象在  B  的  E  ；后缀递增表达式的值是后缀递增运算符的操作数所代表的对象在  A  的  F  ；前缀递减表达式的值是前缀递减运算符的操作数所代表的对象在  D  的  E  ；后缀递减表 ...]]></description>
      <category>《零起步快速通透C语言》读者服务专区</category>
      <author>站长</author>
      <pubDate>Fri, 01 May 2026 09:31:35 +0000</pubDate>
    </item>
    <item>
      <title>4.13--原书检测点4-9的答案与答疑</title>
      <link>http://www.lizhongc.com/thread-848-1-1.html</link>
      <description><![CDATA[检测点4-9
[hr]
1．表达式68 &lt; 67的值是多少？表达式68]]></description>
      <category>《零起步快速通透C语言》读者服务专区</category>
      <author>站长</author>
      <pubDate>Fri, 01 May 2026 09:26:22 +0000</pubDate>
    </item>
    <item>
      <title>4.12--原书检测点4-8的答案与答疑</title>
      <link>http://www.lizhongc.com/thread-847-1-1.html</link>
      <description><![CDATA[检测点4-8
[hr]
1．x = y = 9是赋值表达式吗？它的值是多少？请用printf函数打印该表达式的值。
答：是的，它的值是9。
printf (\&quot;%d\\n\&quot;, x = y = 9);

2．要得到运算符的结果，必须先计算操作数的值，这句话对吗？
答：对的。

3．以表达式x += 3为例，这个表达式的值计 ...]]></description>
      <category>《零起步快速通透C语言》读者服务专区</category>
      <author>站长</author>
      <pubDate>Fri, 01 May 2026 09:25:20 +0000</pubDate>
    </item>
    <item>
      <title>4.11--原书检测点4-7的答案与答疑</title>
      <link>http://www.lizhongc.com/thread-846-1-1.html</link>
      <description><![CDATA[检测点4-7

1．赋值表达式的值是_赋值运算符的左操作数被赋值之后的存储值_。

2．什么是值计算？什么是副作用？
答：计算表达式的值，叫表达式的值计算。如果一个表达式修改了对象或者文件的内容，我们偏向于认为这是值计算过程中的一个副作用（Side Effect）。产生一 ...]]></description>
      <category>《零起步快速通透C语言》读者服务专区</category>
      <author>站长</author>
      <pubDate>Fri, 01 May 2026 09:24:13 +0000</pubDate>
    </item>
    <item>
      <title>4.10--第4.2节的重点、难点和答疑</title>
      <link>http://www.lizhongc.com/thread-839-1-1.html</link>
      <description><![CDATA[“表达式有值”是一个极其重要的规则，但是很遗憾，绝大多数计算机的图书和教程都忽略了这一点。这是个小事情吗？不。忽略这一规则的代价是巨大的：错误地理解很多表达式的行为，所以会写出逻辑错误的代码，并进而形成一种观念：不能写复杂的表达式，这进一步破坏了C语 ...]]></description>
      <category>《零起步快速通透C语言》读者服务专区</category>
      <author>站长</author>
      <pubDate>Tue, 28 Apr 2026 10:24:06 +0000</pubDate>
    </item>
    <item>
      <title>4.9--本单元学习效果测验</title>
      <link>http://www.lizhongc.com/thread-835-1-1.html</link>
      <description><![CDATA[]]></description>
      <category>《零起步快速通透C语言》读者服务专区</category>
      <author>站长</author>
      <pubDate>Sat, 25 Apr 2026 00:35:06 +0000</pubDate>
    </item>
    <item>
      <title>4.8--检测点4-6答案与答疑</title>
      <link>http://www.lizhongc.com/thread-834-1-1.html</link>
      <description><![CDATA[检测点4-6
[hr]
1．给定以下程序片段：
int x = 9;
x += 3;
printf (\&quot;%d\\n\&quot;, x);
x *= 3;
printf (\&quot;%d\\n\&quot;, x);
x /= 6;
printf (\&quot;%d\\n\&quot;, x);
x %= 5;
printf (\&quot;%d\\n\&quot;, x);
请问这段代码打印输出什么？
答：输出
12
36
6
1

2．语句
printf (\&quot;%d,%d\\n\&quot;, 10086, 10010);
 ..]]></description>
      <category>《零起步快速通透C语言》读者服务专区</category>
      <author>站长</author>
      <pubDate>Fri, 24 Apr 2026 11:13:00 +0000</pubDate>
    </item>
  </channel>
</rss>