<?xml version="1.0" encoding="utf-8"?><rss version="2.0">
<channel>
<title><![CDATA[天问]]></title>
<link>http://blog.pfan.cn/tianwen</link>
<description>编程爱好者博客</description>
<language>zh-cn</language>
			<item>
		<title><![CDATA[十所大学课件中心及&nbsp;全国高校ftp站点集合]]></title>
		<link>http://blog.pfan.cn/tianwen/18478.html</link>
		<description><![CDATA[西工大课件的ftp资源
ftp://www.nwpunec.net:nwpunec@www.nwpunec.net
云南大学MBA课件下载
http://www.2004ynmba.com/webpage/download/download.htm
16门中南大学精品课件（有大纲、教案、课件、录像、习题、答案）
http://hg.csu.edu.cn/jpkc2005/
清华大学课件
http://learn.tsinghua.edu.cn/cod_search.jsp
西北工业大学网络教学电子教案下载
http://www.nwpunec.net/vod1/dzjaxz.asp
中国科学技术大学精品课件
http://www.teach.ustc.edu.cn/jpkc/guojia.htm
安徽电大的电子教案
http://www.ahtvu.ah.cn/jxc1/dzjan/dzjan.htm
电子科技大学读秀资源
http://www.duxiudsr.com/dzkeji/cshk
西安科技大学精品课程
http://www.xust.edu.cn/jwc/jpkc/x-jpkc.a
四川大学全部课件
http://www.scopen.net/asfroot/scddip/
北京邮电大学ftp://ftp.bupt.edu.cn&nbsp;&nbsp;&nbsp;ftp://ftp.buptnet.edu.cn&nbsp;&nbsp;&nbsp;华中理工大学
ftp://ftp.whnet.edu.cn&nbsp;&nbsp;&nbsp;ftp://nlcc.hust.edu.cn&nbsp;&nbsp;&nbsp;ftp://dlbftp.dhs.org&nbsp;&nbsp;&nbsp;ftp://202.114.22.148&nbsp;&nbsp;&nbsp;ftp://iprai.hust.edu.cn&nbsp;&nbsp;&nbsp;ftp://ia.hust.edu.cn&nbsp;&nbsp;&nbsp;暨南大学ftp://202.116.9.61&nbsp;&nbsp;&nbsp;ftp://202.116.9.59&nbsp;&nbsp;&nbsp;大连理工大学 ftp://ftp.dlut]]></description>
		<author><![CDATA[天问]]></author>
		<pubDate>2006-09-12 03:21:00</pubDate>
		</item>
				<item>
		<title><![CDATA[8月30日]]></title>
		<link>http://blog.pfan.cn/tianwen/18032.html</link>
		<description><![CDATA[函数循环调用多级调用递归调用 没理解好
数组一维数组二维数组 多维数组
数值数组 只能逐个赋值&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; int a[5]={1,2,3,4,5};字符数组 可整体赋值&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; char c[]="C languag";&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;数组字符操作函数&nbsp;&nbsp; 1，puts&nbsp;输出数组字符串 puts(c);&nbsp;&nbsp;&nbsp;2，gets 读入字符串到数组 gets(c);&nbsp;&nbsp; 3,&nbsp;&nbsp; strcat 连接字符串数组 strcat(c,c1);&nbsp;&nbsp; 4,&nbsp;&nbsp; strcpy 复制字符串数组 覆盖操作 strcat(c,c1);&nbsp;&nbsp; 5,&nbsp;&nbsp; strcmp 比较字符串数组 strcmp(c,c1);&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 字符串1＝字符串2，返回值＝0；　　 字符串1〉字符串2，返回值〉0；　　 字符串1〈字符串2，返回值〈0;&nbsp;&nbsp;&nbsp; 6,&nbsp;&nbsp;srtlne 获得实际字符串数组长度 l=strlne(c);]]></description>
		<author><![CDATA[天问]]></author>
		<pubDate>2006-08-31 00:36:00</pubDate>
		</item>
				<item>
		<title><![CDATA[8月28日]]></title>
		<link>http://blog.pfan.cn/tianwen/17957.html</link>
		<description><![CDATA[变量类型auto static register extern
auto为缺省类型 调用auto变量为其分配内存，调用结束，释放内存static静态存储 变量值在编译时既为其分配内存，程序结束时方释放内存register寄存器存储 变量值存在CPU内部，加快程序运行速度extern外部变量 调用其他源文件内的全局变量 在本源文件内使用
全局变量皆为static类型 用static关键字限定的全局变量,只在定义其的源文件内有效没有被static关键字限定的全局变量，可以在别的源文件先用 extern声明，然后使用
局部变量和全局变量同名，局部变量在运行时将屏蔽全局变量]]></description>
		<author><![CDATA[天问]]></author>
		<pubDate>2006-08-28 22:14:00</pubDate>
		</item>
				<item>
		<title><![CDATA[8月24日]]></title>
		<link>http://blog.pfan.cn/tianwen/17874.html</link>
		<description><![CDATA[不带else的if语句是特例
else与最近的if匹配
if else 语句可执行花括号内的复合语句
while, do while, for三个循环语句最强大的是for，也是最容易理解错的。
while (条件） S表达式：&nbsp; 条件为真，执行表达式，条件为假，while循环结束。
do S表达式 while(条件）： 先执行表达式，再重复while语句的步骤。
for(表达式1，表达式2，S表达式3）：表1赋初值，表2设循环条件，S表3表达式
S表达式多为循环增量，返回给条件式，为真，再执行循环。
三个循序语句可互相嵌套，大部分情况下可互相改写。]]></description>
		<author><![CDATA[天问]]></author>
		<pubDate>2006-08-25 00:45:00</pubDate>
		</item>
				<item>
		<title><![CDATA[8月23日]]></title>
		<link>http://blog.pfan.cn/tianwen/17843.html</link>
		<description><![CDATA[getch
getche 输入字符屏幕可见，回车确认字符输入
getchar 输入字符屏幕不可见，无需回车确认
scanf 数据输入格式控制;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 数据类型匹配（%d%c,2,a)
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 数据风格匹配(%d%d,22)
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 数据长度(%2d%d,223)
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 数据隐式(%d %d,2 2)
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 数据显式(%d : %d, 2 : 2)
getchar
putchar&nbsp; 单引号内单个字符的输入输出
scanf
printf&nbsp;&nbsp; 双引号内任意数据的输入输出]]></description>
		<author><![CDATA[天问]]></author>
		<pubDate>2006-08-24 00:05:00</pubDate>
		</item>
				<item>
		<title><![CDATA[8月22日]]></title>
		<link>http://blog.pfan.cn/tianwen/17788.html</link>
		<description><![CDATA[void hello()
{
printf("hello,world! \n");
}
main()
{
hello();
}
调用函数输出语名。
分析是否闺年的代码：
main(){&nbsp;&nbsp;&nbsp;&nbsp;int year;&nbsp;&nbsp;&nbsp; printf("input a year number\n");&nbsp;&nbsp;&nbsp; scanf("%d",&amp;year);&nbsp;&nbsp;&nbsp; if ( (year % 4 == 0 &amp;&amp; year % 100 != 0) || year % 400 == 0 )&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; printf( "%d is a leap year\n", year );&nbsp;&nbsp;&nbsp;&nbsp; else&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; printf("%d is not a leap year\n", year );&nbsp;&nbsp;&nbsp; return year;}
下边在的代码在TC 3.1中提示:Bad command or file name
main(){&nbsp;int a,b;&nbsp;printf("input two numbers\n");&nbsp;scanf("%d %d",&amp;a,&amp;b);&nbsp;if(a&gt;b) &nbsp;printf(" %d is thd max \n",a);&nbsp;else&nbsp;printf(" %d is thd max \n",b);}]]></description>
		<author><![CDATA[天问]]></author>
		<pubDate>2006-08-23 01:23:00</pubDate>
		</item>
				<item>
		<title><![CDATA[后来居上]]></title>
		<link>http://blog.pfan.cn/tianwen/17732.html</link>
		<description><![CDATA[在windows\system32\drivers\etc\hosts文件内：127.0.0.1&nbsp;&nbsp;&nbsp;&nbsp;www.sina.com(任意网址）可屏蔽该网站
WIN98 的安装，启动MS-DOS，无软驱可通过VFLOPPY的BOOTDISK.IMG软驱映像来完成，执行：A： SCANDISK，命令完成后CD XXX setup 执行安装。安装用时20分钟。
虚拟机下WIN98与宿住机的文件共享，利用ISO镜像可以将宿住机中的文件加裁进98系统。方法：在宿住机下制作ISO镜像文件，映像98的光驱为该文件，启动98，访问光驱，文件被加载。&nbsp;&nbsp; 
TURBOC 2.0 需要设置：载入路径（Include directories)(INCLUDE)连接路径(Library directories)(LIB)和TC的执行文件路径相匹配Save options 可将路径设置的值保存到TCCONFIG.TC文件中
&nbsp;
&nbsp;]]></description>
		<author><![CDATA[天问]]></author>
		<pubDate>2006-08-21 18:34:00</pubDate>
		</item>
				<item>
		<title><![CDATA[函数功能的实现]]></title>
		<link>http://blog.pfan.cn/tianwen/17661.html</link>
		<description><![CDATA[程序的功能是调用各个函数来实现的，函数的实现机理并不对外公开，函数的概念容易理解，但函数内部的运作机制却很难看明白。
刚刚看到了一个编写乘幂函数的范例，却没看明白函数是如何实现任意数的“乘幂”的
#include &lt;stdio.h&gt;
int power(int m, int n);
main(){&nbsp;int i;&nbsp;for(i=0; i&gt;10;++i)&nbsp;print("%d %d %d\n" ,i, power(2,i), power(-3,i));&nbsp;return 0;}
int power(int base, int n){&nbsp;int i, p;&nbsp;p=1;&nbsp;for(i=1; i&lt;=n; ++i)&nbsp;p=p*base;&nbsp;return p;}]]></description>
		<author><![CDATA[天问]]></author>
		<pubDate>2006-08-19 01:41:00</pubDate>
		</item>
				<item>
		<title><![CDATA[BLOG]]></title>
		<link>http://blog.pfan.cn/tianwen/15300.html</link>
		<description><![CDATA[C是一门比较早的语言，郁闷的是早并不代表不成熟，不代表容易学。才刚刚学C，就感到理解困难，可能是基础太差了。可看哪些书会有帮助呢？]]></description>
		<author><![CDATA[天问]]></author>
		<pubDate>2006-06-01 21:02:00</pubDate>
		</item>
		</channel>
</rss>