<?xml version="1.0" encoding="utf-8" ?>
<rss version="2.0">
<channel>
<title>C语言</title>
<link>/Program/C/</link>
<description>网络编程 / C语言</description>
<language>zh-cn</language>
<generator><![CDATA[Copyright &amp;copy; 2009-2012 www.Update8.com. 技术教程网 版权所有]]></generator>
<webmaster>yangbys@139.com</webmaster>
<item>
    <title><![CDATA[C语言解释器的实现]]></title>
    <link>/Program/C/24143.html</link>
    <description><![CDATA[执行代码其实是经过一定处理后的中间代码的另外一种表示。正如前面提到的，我们的中间代码是三元组的形式，比如：c = a + b * c; 可以表示成 @1 = b * c; @2 = a + @1; @3 = c = @2;但是，这种]]></description>
    <pubDate>2012-03-16</pubDate>
    <category>C语言</category>
    <author>yangbys</author>
    <comments>cnblogs.com</comments>
</item>
<item>
    <title><![CDATA[C语言：把文件的所有内容读入到字符串中]]></title>
    <link>/Program/C/24141.html</link>
    <description><![CDATA[C语言：把文件的所有内容读入到字符串中 任何的C编译器，任何平台 #include stdio.h#include string#include stdlib.husing namespace std;int main( void ){ FILE *fp; fp = fopen(05.爱，九把刀系列之那些年，我们]]></description>
    <pubDate>2012-03-16</pubDate>
    <category>C语言</category>
    <author>yangbys</author>
    <comments>oschina.net</comments>
</item>
<item>
    <title><![CDATA[C语言中的数据类型及其转换详解]]></title>
    <link>/Program/C/23886.html</link>
    <description><![CDATA[1. C语言中的数据类型 C语言中的类型按其组成可以分为简单类型和构造类型，按是否预定义了类型名字和值集可以分为基本类型和非基本类型，按是否加了类型限定符可以分为限定类型]]></description>
    <pubDate>2012-02-16</pubDate>
    <category>C语言</category>
    <author>yangbys</author>
    <comments>www.cnblogs.com</comments>
</item>
<item>
    <title><![CDATA[C语言的另类结构体赋值]]></title>
    <link>/Program/C/22411.html</link>
    <description><![CDATA[这几天看Linux的内核源码，突然看到init_pid_ns这个结构体变量的赋值特别奇怪 struct pid_namespace init_pid_ns = { .kref = { .refcount = ATOMIC_INIT(2), }, .pidmap = { [ 0 ... PIDMAP_ENTRIES-1] = { ATOMIC_INIT(BITS_PE]]></description>
    <pubDate>2011-11-25</pubDate>
    <category>C语言</category>
    <author>yangbys</author>
    <comments>www.oschina.net</comments>
</item>
<item>
    <title><![CDATA[C语言：计算输入字符各个字母出现的频率思路]]></title>
    <link>/Program/C/21887.html</link>
    <description><![CDATA[编写一个程序，计算输入字符各个字母出现的频率。 最终结果为： 刚刚接手题目的时候，我想得很复杂，因为26个字母中有大小写嘛，小写a~z，大写A~Z 但是，无论是大写还是小写，字]]></description>
    <pubDate>2011-10-28</pubDate>
    <category>C语言</category>
    <author>yangbys</author>
    <comments>www.cnblogs.com</comments>
</item>
<item>
    <title><![CDATA[C语言队列的实现]]></title>
    <link>/Program/C/21886.html</link>
    <description><![CDATA[C语言队列的实现 main.c /* * use: test queue datastructrue; * data: 27 Oct,2011; */#include queue.h#include stdio.hint main(int argc, char** argv){if (argc != 2){printf(Usage: main arg\n);return(0);}queue_t* myqueue;myqueue = init_que]]></description>
    <pubDate>2011-10-28</pubDate>
    <category>C语言</category>
    <author>yangbys</author>
    <comments>www.oschina.net</comments>
</item>
<item>
    <title><![CDATA[C语言实现面向对象(实现继承，多态)]]></title>
    <link>/Program/C/21855.html</link>
    <description><![CDATA[这是一个模拟简单的绘图程序，定义了基本图形shpe_t，点point_t，圆circle_t，让点和圆都具有基本图形的特点，但它们还有其它特性，可理解为面向对象中继承。。思想很好，可以领会领]]></description>
    <pubDate>2011-10-24</pubDate>
    <category>C语言</category>
    <author>yangbys</author>
    <comments>www.oschina.net</comments>
</item>
<item>
    <title><![CDATA[Linux下用C语言实现发送http请求 方式可以Get或者Post]]></title>
    <link>/Program/C/21433.html</link>
    <description><![CDATA[Linux下用C语言实现发送http请求 方式可以Get或者Post #include stdio.h#include sys/socket.h#include sys/types.h#include time.h#include errno.h#include signal.h#include stdlib.h#include string.h#include unistd.h#include sys/wait]]></description>
    <pubDate>2011-08-25</pubDate>
    <category>C语言</category>
    <author>yangbys</author>
    <comments>www.oschina.net</comments>
</item>
<item>
    <title><![CDATA[C语言的阶乘，排列和组合]]></title>
    <link>/Program/C/21307.html</link>
    <description><![CDATA[C语言的阶乘，排列和组合实例 #includestdio.hint Factorial(int n){int i=0;int sum=1;int array[]={0}; for(i=n;i=1;i--){ sum=sum*i;}return sum;}int Arrangement(int n,int m){int result=0; if(mn){ printf(您的输入有错，上边的数]]></description>
    <pubDate>2011-08-12</pubDate>
    <category>C语言</category>
    <author>yangbys</author>
    <comments>www.oschina.net</comments>
</item>
<item>
    <title><![CDATA[C 语言的谜题]]></title>
    <link>/Program/C/21017.html</link>
    <description><![CDATA[我们可以看到很多C语言相关的一些东西。比如《语言的歧义》主要告诉了大家C语言中你意想不到的错误以及一些歧义上的东西。而《谁说C语言很简单》 则通过一些看似你从来不可能写]]></description>
    <pubDate>2011-07-15</pubDate>
    <category>C语言</category>
    <author>yangbys</author>
    <comments>www.cnblogs.com</comments>
</item>
<item>
    <title><![CDATA[C语言计算圆周率Pi的程序例子]]></title>
    <link>/Program/C/20568.html</link>
    <description><![CDATA[代码 ： #include long a=10000,b,c=2800,d,e,f[2801],g; main() { for(;b-c ; ) f[b++]=a/5; for(;d=0,g=c*2;c-=14,printf(%.4d,e+d/a),e=d%a) for(b=c;d+=f[b]*a,f[b]=d%--g,d/=g--,--b;d*=b); } 输出结果是 3141592653589793238462643383279502884]]></description>
    <pubDate>2011-06-27</pubDate>
    <category>C语言</category>
    <author>yangbys</author>
    <comments>chinaitlab.com</comments>
</item>
<item>
    <title><![CDATA[C语言中排序程序代码参考]]></title>
    <link>/Program/C/20567.html</link>
    <description><![CDATA[这是冒泡法的程序： #include void sort(int array[],int size) { int i,j,temp; /*下面是利用相邻的比较，把大的数放到上面；*/ for(i=0;i for(j=i+1;j if(array[i]array[j]) { temp=array[i]; array[i]=array[j]; array[j]=te]]></description>
    <pubDate>2011-06-27</pubDate>
    <category>C语言</category>
    <author>yangbys</author>
    <comments>chinaitlab.com</comments>
</item>
<item>
    <title><![CDATA[C语言学习趣事_经典面试题系列]]></title>
    <link>/Program/C/20521.html</link>
    <description><![CDATA[在此给还在被中国教育的童鞋们一个建议.............在学校的时候还是小玩玩游戏，小谈谈一些海阔天空的事，当你工作后，你会发现你 不但没有时间这个本钱了， 同时连身体这个本钱]]></description>
    <pubDate>2011-06-23</pubDate>
    <category>C语言</category>
    <author>yangbys</author>
    <comments>cnblogs.com</comments>
</item>
<item>
    <title><![CDATA[C语言开发的一个画图程序]]></title>
    <link>/Program/C/20518.html</link>
    <description><![CDATA[笔者在开发县级电网调度自动化系统的过程中,碰到一个要绘制电力系统一次接线图的问题.由于电力系统一次接线图比较复杂,用一般的编程方法来绘制比较困 难,因此,笔者用C语言开发了]]></description>
    <pubDate>2011-06-23</pubDate>
    <category>C语言</category>
    <author>yangbys</author>
    <comments>oschina.net</comments>
</item>
<item>
    <title><![CDATA[C语言开发中的内存检测基本模块]]></title>
    <link>/Program/C/19624.html</link>
    <description><![CDATA[一、前言 在用C语言开发产品时，由于C语言中的指针操作的灵活性，因此在使用指针时也需要特别小心，稍微不严谨就会导致内存问题，如内存未初始化，内存泄露，内存重复释放等。]]></description>
    <pubDate>2011-05-26</pubDate>
    <category>C语言</category>
    <author>yangbys</author>
    <comments>cnblogs.com</comments>
</item>
<item>
    <title><![CDATA[C语言使用DOM解析XML]]></title>
    <link>/Program/C/18726.html</link>
    <description><![CDATA[http://www.codeproject.com/KB/cpp/ParsingXMLFile.aspx 环境需要： MSXML 4.0 SDK W3C, DOM [文件] ParsingXML__C-C___.zip~217KB 下载 (1) ////Initialize COM Library: //CoInitialize(NULL); ////Create an instance of the DOMDocument object]]></description>
    <pubDate>2011-04-03</pubDate>
    <category>C语言</category>
    <author>yangbys</author>
    <comments>cnblogs.com</comments>
</item>
<item>
    <title><![CDATA[C语言：内存分配方式及常见错误]]></title>
    <link>/Program/C/13443.html</link>
    <description><![CDATA[1、内存分配方式 内存分配方式有三种： （1） 从静态 存储 区域分配。内存在程序编译的时候就已经分配好，这块内存在程序的整个运行期间都存在。例如全局变量，static变量。 （2）]]></description>
    <pubDate>2010-12-04</pubDate>
    <category>C语言</category>
    <author>yangbys</author>
    <comments>chinaitlab.com</comments>
</item>
<item>
    <title><![CDATA[用C语言开发FastCGI应用程序]]></title>
    <link>/Program/C/13307.html</link>
    <description><![CDATA[欢迎进入C/C++编程社区论坛，与200万技术人员互动交流 进入 I/O函数包 FastCGI软件开发套件，开源的WebServer 2.0服务器包含I/O函数包用与简化把已存在的CGI程序转成FastCGI程序或者编写Fast]]></description>
    <pubDate>2010-12-01</pubDate>
    <category>C语言</category>
    <author>yangbys</author>
    <comments>chinaitlab.com</comments>
</item>
<item>
    <title><![CDATA[C语言：最小圆覆盖 随机增量算法]]></title>
    <link>/Program/C/12337.html</link>
    <description><![CDATA[最小圆覆盖。神奇的随机算法。当点以随机的顺序加入时期望复杂度是线性的。 ------------------------------------------------------------------------------------ algorithm: A、令Ci表示为前i个点的最小覆]]></description>
    <pubDate>2010-11-13</pubDate>
    <category>C语言</category>
    <author>yangbys</author>
    <comments>chinaitlab.com</comments>
</item>
<item>
    <title><![CDATA[c语言中时间陷阱的实现]]></title>
    <link>/Program/C/12292.html</link>
    <description><![CDATA[时间陷阱.它能是主程序的运行和对事件的处理异步进行.通过设置时间陷阱.可以在规定的时间间隔到达后自动执行 某个子程序.子程序运行结束后又回到主程序的断点处继续执行.basic语]]></description>
    <pubDate>2010-11-12</pubDate>
    <category>C语言</category>
    <author>yangbys</author>
    <comments>chinaitlab.com</comments>
</item>
<item>
    <title><![CDATA[一款C#多线程测试实例]]></title>
    <link>/Program/C/12044.html</link>
    <description><![CDATA[一款c#多线程测试实例 简单实例 namespace xxx { public class tclass { static tclass() { thread r = new thread(new threadstart(inusrgame)); r.start(); } } } 详细多线程 using system; using system.threading; public class tclass]]></description>
    <pubDate>2010-11-08</pubDate>
    <category>C语言</category>
    <author>yangbys</author>
    <comments>www.111cn.net</comments>
</item>
<item>
    <title><![CDATA[Hash算法(KetamaHash)的c#实现]]></title>
    <link>/Program/C/10404.html</link>
    <description><![CDATA[public class hashalgorithm { public static long hash(byte[] digest, int ntime) { long rv = ((long)(digest[3 + ntime * 4] 0xff) 24) | ((long)(digest[2 + ntime * 4] 0xff) 16) | ((long)(digest[1 + ntime * 4] 0xff) 8) | ((long)digest[0 + ntime]]></description>
    <pubDate>2010-08-29</pubDate>
    <category>C语言</category>
    <author>yangbys</author>
    <comments>www.111cn.net</comments>
</item>
<item>
    <title><![CDATA[C语言的无符号数据类型转换]]></title>
    <link>/Program/C/5260.html</link>
    <description><![CDATA[从网络中读取C的无符号int，short，byte字节数组，相应转换成java的long，char，short short anUnsignedByte = 0; char anUnsignedShort = 0; long anUnsignedInt = 0; int firstByte = 0; int secondByte = 0; int thirdByte = 0; i]]></description>
    <pubDate>2010-03-02</pubDate>
    <category>C语言</category>
    <author>秩名</author>
    <comments>中国技术教程网</comments>
</item>
<item>
    <title><![CDATA[C语言宏定义使用技巧]]></title>
    <link>/Program/C/5259.html</link>
    <description><![CDATA[写好C语言，漂亮的宏定义很重要，使用宏定义可以防止出错，提高可移植性，可读性，方便性 等等。下面列举一些成熟软件中常用得宏定义 1，防止一个头文件被重复包含 #ifndef COMDEF]]></description>
    <pubDate>2010-03-02</pubDate>
    <category>C语言</category>
    <author>秩名</author>
    <comments>中国技术教程网</comments>
</item>
<item>
    <title><![CDATA[基于Oracle OCI的数据访问C语言接口ORADBI（上）]]></title>
    <link>/Program/C/5258.html</link>
    <description><![CDATA[ORADBI是我在Oracle OCI（Oracle 调用接口）基础上开发的，支持Oracle8i、9i、10g等数据库。根据Oracle公司的介绍：OCI是如此可靠，以至于Oracle数据库中的每一条SQL语句都通过OCI来执行。当应用]]></description>
    <pubDate>2010-03-02</pubDate>
    <category>C语言</category>
    <author>秩名</author>
    <comments>中国技术教程网</comments>
</item>
<item>
    <title><![CDATA[基于Oracle OCI的数据访问C语言接口ORADBI（下）]]></title>
    <link>/Program/C/5257.html</link>
    <description><![CDATA[/*====================================================================== column Functions - oracol.c ======================================================================*/ /* returns column data type */ ORADB_CALL1(const char*) ORA_column_]]></description>
    <pubDate>2010-03-02</pubDate>
    <category>C语言</category>
    <author>秩名</author>
    <comments>中国技术教程网</comments>
</item>
<item>
    <title><![CDATA[list.c - A linked list by C --- C语言实现的单向链表]]></title>
    <link>/Program/C/5256.html</link>
    <description><![CDATA[这是我实现的C语言单向链表。单向链表很简单，可以存储任意类型的数据：整型、字符串或指针类型。但是，不要混存。除整型外，链表节点数据由调用者分配和负责释放，即调用者负]]></description>
    <pubDate>2010-03-02</pubDate>
    <category>C语言</category>
    <author>秩名</author>
    <comments>中国技术教程网</comments>
</item>
<item>
    <title><![CDATA[一个UUID生成算法的C语言实现——WIN32版本]]></title>
    <link>/Program/C/5255.html</link>
    <description><![CDATA[根据定义，UUID（Universally Unique IDentifier，也称GUID）在时间和空间都是唯一的。为保证空间的唯一性，每个UUID使用了一个48位的值来记录，一般是计算机的网卡地址。为保证时间上的唯一]]></description>
    <pubDate>2010-03-02</pubDate>
    <category>C语言</category>
    <author>秩名</author>
    <comments>中国技术教程网</comments>
</item>
<item>
    <title><![CDATA[一个简单的HashMap C语言实现]]></title>
    <link>/Program/C/5254.html</link>
    <description><![CDATA[用C语言实现一个简单实用的hashmap，具有一定的实际意义。尤其我们不想使用STL里面的map...类的时候。我实现的这个hashmap，用来做key---value的映射，key必须是有效的字符串，value是调用者]]></description>
    <pubDate>2010-03-02</pubDate>
    <category>C语言</category>
    <author>秩名</author>
    <comments>中国技术教程网</comments>
</item>
<item>
    <title><![CDATA[C语言实现一个简单的单向链表list]]></title>
    <link>/Program/C/5253.html</link>
    <description><![CDATA[用C语言实现一个简单实用的单向链表list，具有一定的实际意义。尤其我们不想使用STL里面的list...类的时候。我实现的这个list，结点存储任何调用者分配的任意类型的数据（void*）。这]]></description>
    <pubDate>2010-03-02</pubDate>
    <category>C语言</category>
    <author>秩名</author>
    <comments>中国技术教程网</comments>
</item>
<item>
    <title><![CDATA[C语言实现一个四叉树quadtree]]></title>
    <link>/Program/C/5252.html</link>
    <description><![CDATA[用C语言实现一个2维四叉树quadtree，具有一定的实际意义。你可以把几何图形的索引（用long型的id标识）放到这个树中（根据最小边界矩形）。quadtree可以用来快速区域查找图形，虽然不]]></description>
    <pubDate>2010-03-02</pubDate>
    <category>C语言</category>
    <author>秩名</author>
    <comments>中国技术教程网</comments>
</item>
<item>
    <title><![CDATA[RTree源代码——C语言实现(上)]]></title>
    <link>/Program/C/5251.html</link>
    <description><![CDATA[一、什么是RTree R树是B树向多维空间发展的另一种形式，它将空间对象按范围划分，每个结点都对应一个区域和一个磁盘页，非叶结点的磁盘页中存储其所有子结点的区域范围，非叶结点]]></description>
    <pubDate>2010-03-02</pubDate>
    <category>C语言</category>
    <author>秩名</author>
    <comments>中国技术教程网</comments>
</item>
<item>
    <title><![CDATA[RTree源代码——C语言实现(下)]]></title>
    <link>/Program/C/5250.html</link>
    <description><![CDATA[/*============================================================================= Public functions: =============================================================================*/ int RTreeSetNodeMax(int new_max) { return set_max(NODECARD, new]]></description>
    <pubDate>2010-03-02</pubDate>
    <category>C语言</category>
    <author>秩名</author>
    <comments>中国技术教程网</comments>
</item>
<item>
    <title><![CDATA[计算机等级：7道经典C语言上机试题解析]]></title>
    <link>/Program/C/5249.html</link>
    <description><![CDATA[注意：部分源程序存放在prog1.c中请勿改动主函数main()和输出数据函数writeDAT()的内容。 函数ReadDat()实现从文件ENG.IN中读取一篇英文文章，存入到字符串数组xx中;请编制函数encryptChar()，按]]></description>
    <pubDate>2010-03-02</pubDate>
    <category>C语言</category>
    <author>秩名</author>
    <comments>中国技术教程网</comments>
</item>
<item>
    <title><![CDATA[谈二级C语言笔试应试技巧]]></title>
    <link>/Program/C/5248.html</link>
    <description><![CDATA[二级C语言笔试只有选择题和填空题两种题型。这两种题型的解题方法有所不同，考生在备考时要深化对基本概念和知识点的理解，并注重实践，同时要作一些针对性的练习，特别是历年]]></description>
    <pubDate>2010-03-02</pubDate>
    <category>C语言</category>
    <author>秩名</author>
    <comments>中国技术教程网</comments>
</item>
<item>
    <title><![CDATA[C语言上机考试改错题分析总结]]></title>
    <link>/Program/C/5247.html</link>
    <description><![CDATA[以下对改错题的改错方式做一些总结，当然这些总结只能对大部分改错行有效。 1、若错误行是函数首部，可分为以下几种情况： A、该行最后若有分号则删除，中间若有分号则改成逗号]]></description>
    <pubDate>2010-03-02</pubDate>
    <category>C语言</category>
    <author>秩名</author>
    <comments>中国技术教程网</comments>
</item>
<item>
    <title><![CDATA[Strsafe.h：更安全的C语言字符串处理函数]]></title>
    <link>/Program/C/5246.html</link>
    <description><![CDATA[原文出处：Strsafe.h: Safer String Handling in C 在微软公司举行的Microsoft Windows Security Push 活动期间，一批测试者、程序管理经理和普通程序员共同决定要为 C 语言量身定制一套具有较高安全性]]></description>
    <pubDate>2010-03-02</pubDate>
    <category>C语言</category>
    <author>秩名</author>
    <comments>中国技术教程网</comments>
</item>
<item>
    <title><![CDATA[C语言文件操作函数大全]]></title>
    <link>/Program/C/5245.html</link>
    <description><![CDATA[clearerr（清除文件流的错误旗标） 相关函数 feof 表头文件 #includestdio.h 定义函数 void clearerr(FILE * stream); 函数说明 clearerr（）清除参数stream指定的文件流所使用的错误旗标。 返回值 fclos]]></description>
    <pubDate>2010-03-02</pubDate>
    <category>C语言</category>
    <author>秩名</author>
    <comments>中国技术教程网</comments>
</item>
<item>
    <title><![CDATA[约瑟夫环问题求解算法C语言源代码]]></title>
    <link>/Program/C/5244.html</link>
    <description><![CDATA[约瑟夫算法：n个人围成一圈，每人有一个各不相同的编号，选择一个人作为起点，然后顺时针从1到k数数，每数到k的人退出圈子，圈子缩小，然后从下一个人继续从1到k数数，重复上面]]></description>
    <pubDate>2010-03-02</pubDate>
    <category>C语言</category>
    <author>秩名</author>
    <comments>中国技术教程网</comments>
</item>
<item>
    <title><![CDATA[水滴石穿C语言程序设计之正确使用const]]></title>
    <link>/Program/C/5243.html</link>
    <description><![CDATA[基本解释 const是一个C语言的关键字，它限定一个变量不允许被改变。使用const在一定程度上可以提高程序的健壮性，另外，在观看别人代码的时候，清晰理解const所起的作用，对理解对方]]></description>
    <pubDate>2010-03-02</pubDate>
    <category>C语言</category>
    <author>秩名</author>
    <comments>中国技术教程网</comments>
</item>
<item>
    <title><![CDATA[水滴石穿C语言之代码检查工具]]></title>
    <link>/Program/C/5242.html</link>
    <description><![CDATA[概述 PC-Lint是一个历史悠久，功能异常强劲的静态代码检测工具。它的使用历史可以追溯到计算机编程的远古时代（30多年以前）。经过这么多年的发展，它不但能够监测出许多语法逻辑]]></description>
    <pubDate>2010-03-02</pubDate>
    <category>C语言</category>
    <author>秩名</author>
    <comments>中国技术教程网</comments>
</item>
<item>
    <title><![CDATA[水滴石穿C语言之typedef的问题]]></title>
    <link>/Program/C/5241.html</link>
    <description><![CDATA[1. 基本解释 typedef为C语言的关键字，作用是为一种数据类型定义一个新名字。这里的数据类型包括内部数据类型（int,char等）和自定义的数据类型（struct等）。 在编程中使用typedef目的一]]></description>
    <pubDate>2010-03-02</pubDate>
    <category>C语言</category>
    <author>秩名</author>
    <comments>中国技术教程网</comments>
</item>
<item>
    <title><![CDATA[C语言实现GBK/GB2312/五大码之间的转换]]></title>
    <link>/Program/C/5240.html</link>
    <description><![CDATA[以下四个函数分别实现： 大五码转GBK码/GBK转大五码 GB2312码转GBK码/GBK码转GB2312码 //--------------------------------------------------------------------------- // 大五码转GBK码： void __fastcall BIG52GBK(char *]]></description>
    <pubDate>2010-03-02</pubDate>
    <category>C语言</category>
    <author>秩名</author>
    <comments>中国技术教程网</comments>
</item>
<item>
    <title><![CDATA[水滴石穿C语言之指针综合谈]]></title>
    <link>/Program/C/5239.html</link>
    <description><![CDATA[概述 Joel Spolsky认为，对指针的理解是一种aptitude，不是通过训练就可以达到的。虽然如此，我还是想谈一谈这个C/C++语言中最强劲也是最容易出错的要素。 鉴于指针和目前计算机内存结]]></description>
    <pubDate>2010-03-02</pubDate>
    <category>C语言</category>
    <author>秩名</author>
    <comments>中国技术教程网</comments>
</item>
<item>
    <title><![CDATA[水滴石穿C语言之可变参数问题]]></title>
    <link>/Program/C/5238.html</link>
    <description><![CDATA[C语言中有一种长度不确定的参数，形如：，它主要用在参数个数不确定的函数中，我们最轻易想到的例子是printf函数。 原型： int printf( const char *format [, argument]... ); 使用例：printf(Enjo]]></description>
    <pubDate>2010-03-02</pubDate>
    <category>C语言</category>
    <author>秩名</author>
    <comments>中国技术教程网</comments>
</item>
<item>
    <title><![CDATA[水滴石穿C语言之声明的语法]]></title>
    <link>/Program/C/5237.html</link>
    <description><![CDATA[概述 在很多情况下，尤其是读别人所写代码的时候，对C语言声明的理解能力变得非常重要，而C语言本身的凝练简约也使得C语言的声明常常会令人感到非常困惑，因此，在这里我用一篇]]></description>
    <pubDate>2010-03-02</pubDate>
    <category>C语言</category>
    <author>秩名</author>
    <comments>中国技术教程网</comments>
</item>
<item>
    <title><![CDATA[用C语言实现禁用网卡的代码]]></title>
    <link>/Program/C/5236.html</link>
    <description><![CDATA[#include stdio.h #include windows.h #include Setupapi.h #include objbase.h void EnumDevices(HDEVINFO hDevInfo) { SP_DEVINFO_DATA DeviceInfoData = {sizeof(SP_DEVINFO_DATA)}; LPOLESTR guid; char devName[128]; char instanceId[128]; for (int i=0]]></description>
    <pubDate>2010-03-02</pubDate>
    <category>C语言</category>
    <author>秩名</author>
    <comments>中国技术教程网</comments>
</item>
<item>
    <title><![CDATA[C语言计算奖金发放实例]]></title>
    <link>/Program/C/5235.html</link>
    <description><![CDATA[企业发放的奖金根据利润提成。利润（I）低于或等于10万元时，奖金可提10%；利润高于10万元，低于20万元时，低于10万元的部分按10%提成，高于10万元的部分，可可提成7.5%；20万到40万之]]></description>
    <pubDate>2010-03-02</pubDate>
    <category>C语言</category>
    <author>秩名</author>
    <comments>中国技术教程网</comments>
</item>
<item>
    <title><![CDATA[学习C语言并精通C语言]]></title>
    <link>/Program/C/5234.html</link>
    <description><![CDATA[程序员之路──如何学习C语言 学习C语言不是一朝一夕的事情，但也不需要花费十年时间才能精通。如何以最小的代价学习并精通C语言是本文的主题。请注意，即使是最小的代价，也绝]]></description>
    <pubDate>2010-03-02</pubDate>
    <category>C语言</category>
    <author>秩名</author>
    <comments>中国技术教程网</comments>
</item>
<item>
    <title><![CDATA[C语言生成随机数的函数、延时函数]]></title>
    <link>/Program/C/5233.html</link>
    <description><![CDATA[下面C语言代码使用了生成随机数的函数、延时函数。请大家仔细观察其显示效果。 从以下代码，我们可以得出一个重要的结论：当上述两类函数被放入循环时，应作出一定修改。同时还]]></description>
    <pubDate>2010-03-02</pubDate>
    <category>C语言</category>
    <author>秩名</author>
    <comments>中国技术教程网</comments>
</item>

</channel>
</rss>

