<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<atom:link href="https://www.gentoo-zh.org/extern.php?action=feed&amp;tid=396&amp;type=rss" rel="self" type="application/rss+xml" />
		<title><![CDATA[Gentoo中文社区 / C 练习实例87]]></title>
		<link>https://www.gentoo-zh.org/viewtopic.php?id=396</link>
		<description><![CDATA[C 练习实例87 最近发表的帖子。]]></description>
		<lastBuildDate>Mon, 29 Aug 2022 11:51:30 +0000</lastBuildDate>
		<generator>FluxBB</generator>
		<item>
			<title><![CDATA[C 练习实例87]]></title>
			<link>https://www.gentoo-zh.org/viewtopic.php?pid=402#p402</link>
			<description><![CDATA[<p>题目：回答结果（结构体变量传递）。</p><p>程序分析：无。</p><div class="codebox"><pre><code>#include&lt;stdio.h&gt;
 
struct student
{
    int x;
    char c;
} a;
 
int main()
{
    a.x=3;
    a.c=&#039;a&#039;;
    f(a);
    printf(&quot;%d,%c&quot;,a.x,a.c);
}
f(struct student b)
{
    b.x=20;
    b.c=&#039;y&#039;;
}</code></pre></div>]]></description>
			<author><![CDATA[dummy@example.com (batsom)]]></author>
			<pubDate>Mon, 29 Aug 2022 11:51:30 +0000</pubDate>
			<guid>https://www.gentoo-zh.org/viewtopic.php?pid=402#p402</guid>
		</item>
	</channel>
</rss>
