<?xml version='1.0' encoding='UTF-8'?>
<rss xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/" version="2.0"><channel><title>Ozmandias的C语言练习博客</title><link>https://Ozmand1as.github.io/ozmandias.github.io</link><description>从零开始学习编程语言，努力耕耘下去</description><copyright>Ozmandias的C语言练习博客</copyright><docs>http://www.rssboard.org/rss-specification</docs><generator>python-feedgen</generator><image><url>https://avatars.githubusercontent.com/u/272401189?u=60f2764a7a45d23d2ee8857aa5fca3037ad1c334&amp;v=4&amp;size=64</url><title>avatar</title><link>https://Ozmand1as.github.io/ozmandias.github.io</link></image><lastBuildDate>Wed, 15 Apr 2026 11:34:58 +0000</lastBuildDate><managingEditor>Ozmandias的C语言练习博客</managingEditor><ttl>60</ttl><webMaster>Ozmandias的C语言练习博客</webMaster><item><title>C语言-分支循环</title><link>https://Ozmand1as.github.io/ozmandias.github.io/post/C-yu-yan---fen-zhi-xun-huan.html</link><description># 分支循环
## 分支结构-if语句和switch语句
### if语句
C语言里，有两种分支语句**if**和**switch**用来实现分支结构。</description><guid isPermaLink="true">https://Ozmand1as.github.io/ozmandias.github.io/post/C-yu-yan---fen-zhi-xun-huan.html</guid><pubDate>Wed, 15 Apr 2026 11:34:29 +0000</pubDate></item><item><title>函数的形参与实参</title><link>https://Ozmand1as.github.io/ozmandias.github.io/post/han-shu-de-xing-can-yu-shi-can.html</link><description>**在函数使⽤的过程中，把函数的参数分为：实参和形参 举例之前的代码：**

```c
#include &lt;stdio.h&gt; 
int Add(int x,int y) 
{ 
	//以下代码可以简化成 
	//return = x+y; 
	int z = 0; 
	z = x+y; 
	return z; 
} 
 
int main() 
{ 
	int a = 0;
	int b = 0;
	//输⼊ 
	scanf(“%d %d”,&amp;a,&amp;b); 
	//调⽤⾃定义加法函数Add，实现a和b的想家 	//求和的结果放在r中 
	int r = Add(a,b); 
	//输出 
	printf(“%d\n”,r); 
	return 0; 
} 
```
# 1.实参和形参 
## 1.1实参 
上⾯代码中，第2～9⾏是Add函数的定义， 有了函数后，在第17⾏调⽤Add函数。</description><guid isPermaLink="true">https://Ozmand1as.github.io/ozmandias.github.io/post/han-shu-de-xing-can-yu-shi-can.html</guid><pubDate>Fri, 03 Apr 2026 07:11:07 +0000</pubDate></item><item><title>Blog的开始</title><link>https://Ozmand1as.github.io/ozmandias.github.io/post/Blog-de-kai-shi.html</link><description># **我的第一个Blog**
## 自我介绍
目前是在读大四学生，大学是一个普通二本艺术专业。</description><guid isPermaLink="true">https://Ozmand1as.github.io/ozmandias.github.io/post/Blog-de-kai-shi.html</guid><pubDate>Fri, 03 Apr 2026 06:15:38 +0000</pubDate></item></channel></rss>