<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
  <channel>
    <title>鼠侠网 - C语言学习参考</title>
    <link>http://www.lizhongc.com/forum-26-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 10:46:11 +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>为什么每家操作系统提供的系统调用都不一样</title>
      <link>http://www.lizhongc.com/thread-126-1-1.html</link>
      <description><![CDATA[老师你好，为什么每家操作系统再制定之处没有一个组织出来制定一个标准，让操作系统厂家在实现操作系统时实现的对外系统调用(.h头文件)一模一样，这样是不是就会解决很多跨平台问题了吧！ ...]]></description>
      <category>C语言学习参考</category>
      <author>linuxspring</author>
      <pubDate>Mon, 29 Apr 2024 03:56:02 +0000</pubDate>
    </item>
    <item>
      <title>行为（behavior）</title>
      <link>http://www.lizhongc.com/thread-113-1-1.html</link>
      <description><![CDATA[行为（behavior）

[hr]
指语句所执行的动作的外在表现。比如文件被修改、在屏幕上显示内容、内存中的数据被修改，等等。]]></description>
      <category>C语言学习参考</category>
      <author>站长</author>
      <pubDate>Wed, 27 Mar 2024 13:10:36 +0000</pubDate>
    </item>
    <item>
      <title>实际参数（arguments）</title>
      <link>http://www.lizhongc.com/thread-111-1-1.html</link>
      <description><![CDATA[实际参数（arguments或者actual argument）

[hr]
实际参数是指：
1，在函数调用时，位于括号中的、用逗号分开的每个表达式；或者，
2，在一个函数式宏调用中，位于括号中的、由逗号分开的预处理记号。


举例：


 ...]]></description>
      <category>C语言学习参考</category>
      <author>站长</author>
      <pubDate>Sat, 23 Mar 2024 14:31:55 +0000</pubDate>
    </item>
    <item>
      <title>复合字面值（Compound literals）</title>
      <link>http://www.lizhongc.com/thread-110-1-1.html</link>
      <description><![CDATA[复合字面值（Compound literals）

[hr]
复合字面值属于后缀表达式。
有时可能会遇到这种情况：有一个函数fn，它接收一个结构类型的参数。为了调用这个函数，必须先为传递这样的参数创建一个对象。但是，这个对象仅仅是为了调用函数而创建，在程序的其它地方用不到它：
 ...]]></description>
      <category>C语言学习参考</category>
      <author>站长</author>
      <pubDate>Fri, 15 Mar 2024 04:25:44 +0000</pubDate>
    </item>
    <item>
      <title>后缀表达式（postfix expressions）</title>
      <link>http://www.lizhongc.com/thread-108-1-1.html</link>
      <description><![CDATA[后缀表达式（postfix expressions）
[hr]后缀表达式包括

[*]复合字面值
[*]数组下标
[*]函数调用
[*]（结构或联合的）成员选择
[*]后缀递增（++）
[*]后缀递减（--）


组成后缀表达式语法形式的运算符称为后缀运算符。以下是几个后缀表达式的例子，其中，x ++、f (x) ...]]></description>
      <category>C语言学习参考</category>
      <author>站长</author>
      <pubDate>Tue, 12 Mar 2024 14:17:44 +0000</pubDate>
    </item>
    <item>
      <title>基本表达式（Primary expressions）</title>
      <link>http://www.lizhongc.com/thread-104-1-1.html</link>
      <description><![CDATA[基本表达式（Primary expressions）

[hr]

基本表达式通常作为其它表达式的基本构件而存在。基本表达式包括以下几种：

[*]标识符
[*]（各种）常量
[*]字面串
[*]泛型选择
[*]括住的表达式

被声明为对象类型或者函数类型的标识符是表达式的一个基本构件，因此，这两种 ...]]></description>
      <category>C语言学习参考</category>
      <author>站长</author>
      <pubDate>Mon, 11 Mar 2024 08:10:32 +0000</pubDate>
    </item>
    <item>
      <title>表达式（Expressions）</title>
      <link>http://www.lizhongc.com/thread-103-1-1.html</link>
      <description><![CDATA[表达式（Expressions）

[hr]
一般来说，表达式由运算符和它的操作数组成，但有些非常简单的表达式没有运算符。表达式可以出现在声明和各种语句里，以实现下面的一种或多种功能：
（1）指示对象或者函数；
（2）计算出一个值；
（3）发起一个副作用。
给定以下代码：

 ...]]></description>
      <category>C语言学习参考</category>
      <author>站长</author>
      <pubDate>Sun, 10 Mar 2024 13:05:07 +0000</pubDate>
    </item>
    <item>
      <title>C语言术语：扩展对齐</title>
      <link>http://www.lizhongc.com/thread-102-1-1.html</link>
      <description><![CDATA[扩展对齐
[hr]


所谓扩展对齐，是指超出合理区间的那些对齐要求。那么，怎么才算是位于合理区间呢？
一个C实现可以提供一个适用于所有上下文环境的最大对齐，在数值上等于以下表达式求值的结果。
_Alignof (max_align_t)
任何大于这个数值的对齐要求都被视为扩展对齐。 ...]]></description>
      <category>C语言学习参考</category>
      <author>站长</author>
      <pubDate>Sat, 09 Mar 2024 07:14:49 +0000</pubDate>
    </item>
    <item>
      <title>C语言术语：基础对齐</title>
      <link>http://www.lizhongc.com/thread-101-1-1.html</link>
      <description><![CDATA[基础对齐
[hr]所谓基础对齐，是指位于合理区间上的那些对齐要求。那么，怎么才算是位于合理区间呢？
一个C实现可以提供一个适用于所有上下文环境的最大对齐，在数值上等于以下表达式求值的结果。
_Alignof (max_align_t)
任何小于或者等于这个数值的对齐要求都被视为基 ...]]></description>
      <category>C语言学习参考</category>
      <author>站长</author>
      <pubDate>Sat, 09 Mar 2024 07:14:10 +0000</pubDate>
    </item>
    <item>
      <title>C语言术语：对齐</title>
      <link>http://www.lizhongc.com/thread-100-1-1.html</link>
      <description><![CDATA[对齐（alignment）
[hr]

受硬件布线的限制，或者为了提高存储器访问效率，要求特定类型的对象在存储器里的位置只能开始于某些特定的字节地址，而这些字节地址都是某个数值N的特定倍数（以不超过实际的存储空间为限），这称为对齐（alignment）。进一步地，我们称那个对 ...]]></description>
      <category>C语言学习参考</category>
      <author>站长</author>
      <pubDate>Sat, 09 Mar 2024 07:11:35 +0000</pubDate>
    </item>
    <item>
      <title>C语言术语：对象（Object）</title>
      <link>http://www.lizhongc.com/thread-98-1-1.html</link>
      <description><![CDATA[对象（Object）

[hr]
对象是指计算机系统里的一个存储区域，它里面存储的内容用来表示数值。

说明：
1，C语言里的对象不同于C++里的对象。
2，不严格地说，在C语言里，对象就是我们平时所说的变量。但是，“变量”是一个拿来就用的术语，缺乏标准定义。特别是，按照传 ...]]></description>
      <category>C语言学习参考</category>
      <author>站长</author>
      <pubDate>Fri, 08 Mar 2024 04:19:18 +0000</pubDate>
    </item>
    <item>
      <title>C语言术语：访问（Access）</title>
      <link>http://www.lizhongc.com/thread-97-1-1.html</link>
      <description><![CDATA[访问（Access）

[hr]
访问是一个程序执行时的动作，指的是读或者写一个对象的值。]]></description>
      <category>C语言学习参考</category>
      <author>站长</author>
      <pubDate>Fri, 08 Mar 2024 04:11:46 +0000</pubDate>
    </item>
    <item>
      <title>C语言学习参考--依据ISO/IEC 9899国际标准</title>
      <link>http://www.lizhongc.com/thread-95-1-1.html</link>
      <description><![CDATA[自从C语言诞生以后，历经多次标准化，分别是1989年的ISO/IEC 9899:1989（简称C99）、1999年的ISO/IEC 9899:1999（简称C99）、2011年的ISO/IEC 9899:2011(简称C11）、2018年的ISO/IEC 9899:2018（简称C18）和2023年的ISO/IEC 9899:2023（简称C23）。


C语言的标准文档分 ...]]></description>
      <category>C语言学习参考</category>
      <author>站长</author>
      <pubDate>Thu, 07 Mar 2024 13:51:06 +0000</pubDate>
    </item>
  </channel>
</rss>