<?xml version="1.0" encoding="gb2312"?>
<rss version="2.0">
<channel>
<title>C/C++</title>
<link>/html/C_C__/index.html</link>
<description>C/C++</description>
<language>zh-cn</language>
<generator>copy right @ 百家拳软件项目研究室 2007 &lt;a href=&quot;http://www.miibeian.gov.cn/&quot;&gt;辽ICP备07011763&lt;/a&gt;&lt;script language=&quot;javascript&quot; type=&quot;text/javascript&quot; src=&quot;http://js.users.51.la/1150523.js&quot;&gt;&lt;/script&gt;</generator>
<webmaster>admin@100jq.com</webmaster>
<item>
    <title>学好C语言以后有什么好的发展方向？问答</title>
    <link>/html/C_C__/20080508/2167.html</link>
    <description>问：C语言分为Linux下的，Windows下的还有嵌入式下的; 但是现在在国内公司主要应用在哪一方面呢？上面哪一个的需求最多? 答：1，linux方面和嵌入式 2，嵌入式下 用 C 的是最多的 .... 3，linux 下也还好， 但是 win 下， 由于MS 的 VC、VS流行成风， 使用 MFC、ATL 的</description>
    <pubDate>2008-05-08</pubDate>
    <category>C/C++</category>
    <author>秩名</author>
    <comments>百家拳原创软件教程网</comments>
</item>
<item>
    <title>static变量举例</title>
    <link>/html/C_C__/C_C__jishuziliao/20080313/2043.html</link>
    <description>#include stdio.h #include stdlib.h int f(int a){ int b=0; static int c=0; b++; c++; return (a+b+c); } int main(int argc, char *argv[]) { int i; for (i=0;i3;i++){ printf(%5d,f(2)); } system(PAUSE); return 0; } 结果输出 4 5 6 如果把int b前加上 static</description>
    <pubDate>2008-03-13</pubDate>
    <category>C/C++技术资料</category>
    <author>魔人</author>
    <comments>百家拳原创软件教程网</comments>
</item>
<item>
    <title>二维数组打印菱形 C语言</title>
    <link>/html/C_C__/C_C__jishuziliao/20080313/2042.html</link>
    <description>#include stdio.h #include stdlib.h int main(int argc, char *argv[]) { char diamond[ ][5]={{' ',' ','*'},{' ','*',' ','*'},{'*',' ',' ',' ','*'},{' ','*',' ','*'}, {' ',' ','*'}}; int i,j,k; //二维数组遍历 for(i=0;i5;i++) { for(j=0;j5;j++) printf(%5c</description>
    <pubDate>2008-03-13</pubDate>
    <category>C/C++技术资料</category>
    <author>秩名</author>
    <comments>百家拳原创软件教程网</comments>
</item>
<item>
    <title>求最大数函数</title>
    <link>/html/C_C__/C_C__jishuziliao/20080313/2041.html</link>
    <description>求最大数函数 #include stdio.h #include stdlib.h int maxi(int x,int y) // int x,y; { int z; z=xy?x:y; return z; } int main(int argc, char *argv[]) { float a,b,c; scanf(%d %d, a,b); c=maxi(a,b); printf(最大数为 %d,c); system(PAUSE); return 0; }</description>
    <pubDate>2008-03-13</pubDate>
    <category>C/C++技术资料</category>
    <author>魔人</author>
    <comments>原创</comments>
</item>
<item>
    <title>斐波那挈数列 C语言实现</title>
    <link>/html/C_C__/C_C__jishuziliao/20080311/2040.html</link>
    <description>用DEV C++实现 #include stdio.h #include stdlib.h int main(int argc, char *argv[]) { long f1,f2; int i; f1=1;f2=1; for(i=1;i=40;i++) {printf(%12ld %12ld,f1,f2); if(i%2==0)printf(n); //循环两次，输出一个换行 f1=f1+f2; f2=f2+f1; } system(PAUSE); retur</description>
    <pubDate>2008-03-11</pubDate>
    <category>C/C++技术资料</category>
    <author>魔人</author>
    <comments>百家拳原创软件教程网</comments>
</item>
<item>
    <title>C语言实现 恺撒加密法</title>
    <link>/html/C_C__/C_C__jishuziliao/20080311/2039.html</link>
    <description>#include stdio.h #include stdlib.h int main(int argc, char *argv[]) { char c; while( (c=getchar() )!='n') { if((c='a'c='z')||(c='A'c='Z')) { c=c+4; if(c'Z'c='Z'+4||c'z'){ c=c-26; } } printf(%c,c); } system(PAUSE); return 0; }</description>
    <pubDate>2008-03-11</pubDate>
    <category>C/C++技术资料</category>
    <author>魔人</author>
    <comments>百家拳原创软件教程网</comments>
</item>
<item>
    <title>输入一行字符 统计字符 C语言</title>
    <link>/html/C_C__/C_C__jishuziliao/20080311/2038.html</link>
    <description>输入一行字符，分别统计出其中英文字母、空格，数字和其它字符的个数。 #include stdio.h #include stdlib.h int main(int argc, char *argv[]) { int i,j,k,l; char c; i=0;j=0;k=0;l=0; while((c=getchar())!='n') //输入回车则跳出循环 { if( (c='a'c='z')||(c='A'</description>
    <pubDate>2008-03-11</pubDate>
    <category>C/C++技术资料</category>
    <author>魔人</author>
    <comments>百家拳原创软件教程网</comments>
</item>
<item>
    <title>函数的可变参数详谈</title>
    <link>/html/C_C__/C_C__jishuziliao/20080307/2037.html</link>
    <description>*/ -------------------------------------------------------------------------------------- */ 出自： 编程中国 http://www.bc-cn.net */ 作者： neverTheSameE-mail：zhaoxufeng9997@126.comQQ：475818502 */ 时间： 2007-10-5编程论坛首发 */ 声明： 尊重作者劳</description>
    <pubDate>2008-03-07</pubDate>
    <category>C/C++技术资料</category>
    <author>秩名</author>
    <comments>百家拳原创软件教程网</comments>
</item>
<item>
    <title>浅谈递归机制和非递归转换</title>
    <link>/html/C_C__/C_C__jishuziliao/20080307/2036.html</link>
    <description>*/ -------------------------------------------------------------------------------------- */ 出自： 编程中国 http://www.bc-cn.net */ 作者： nuciewthE-mail：wth870628@163.comQQ：314218584 */ 时间： 2007-10-7编程论坛首发 */ 声明： 尊重作者劳动，转载请</description>
    <pubDate>2008-03-07</pubDate>
    <category>C/C++技术资料</category>
    <author>秩名</author>
    <comments>百家拳原创软件教程网</comments>
</item>
<item>
    <title>M个人,1到N报数出列问题</title>
    <link>/html/C_C__/C_C__jishuziliao/20080307/2035.html</link>
    <description>*/ -------------------------------------------------------------------------------------- */ 出自： 编程中国 http://www.bc-cn.net */ 作者： josen0205QQ：7007873 */ 时间： 2007-10-23编程论坛首发 */ 声明： 尊重作者劳动，转载请保留本段文字 */ ---------</description>
    <pubDate>2008-03-07</pubDate>
    <category>C/C++技术资料</category>
    <author>秩名</author>
    <comments>百家拳原创软件教程网</comments>
</item>
<item>
    <title>用地址替代变量的讨论</title>
    <link>/html/C_C__/C_C__jishuziliao/20080307/2034.html</link>
    <description>*/ -------------------------------------------------------------------------------------- */ 出自： 编程中国 http://www.bc-cn.net */ 作者： neverTheSameE-mail：zhaoxufeng9997@126.comQQ：475818502 */ 时间： 2007-10-24编程论坛首发 */ 声明： 尊重作者劳</description>
    <pubDate>2008-03-07</pubDate>
    <category>C/C++技术资料</category>
    <author>秩名</author>
    <comments>百家拳原创软件教程网</comments>
</item>
<item>
    <title>宏比函数实现在时间上的优越性探讨</title>
    <link>/html/C_C__/C_C__jishuziliao/20080307/2033.html</link>
    <description>*/ -------------------------------------------------------------------------------------- */ 出自： 编程中国 http://www.bc-cn.net */ 作者： neverTheSameE-mail：zhaoxufeng9997@126.comQQ：475818502 */ 时间： 2007-11-1编程论坛首发 */ 声明： 尊重作者劳</description>
    <pubDate>2008-03-07</pubDate>
    <category>C/C++技术资料</category>
    <author>秩名</author>
    <comments>百家拳原创软件教程网</comments>
</item>
<item>
    <title>爱因斯坦难题的Ｃ语言程序设计</title>
    <link>/html/C_C__/C_C__jishuziliao/20080307/2032.html</link>
    <description>*/ -------------------------------------------------------------------------------------- */ 出自： 编程中国 http://www.bc-cn.net */ 作者： yu_hua */ 时间： 2007-11-10编程论坛首发 */ 声明： 尊重作者劳动，转载请保留本段文字 */ -----------------------</description>
    <pubDate>2008-03-07</pubDate>
    <category>C/C++技术资料</category>
    <author>秩名</author>
    <comments>百家拳原创软件教程网</comments>
</item>
<item>
    <title>对const使用的理解</title>
    <link>/html/C_C__/C_C__jishuziliao/20080307/2031.html</link>
    <description>*/ -------------------------------------------------------------------------------------- */ 出自： 编程中国 http://www.bc-cn.net */ 作者： neverTheSameE-mail：zhaoxufeng9997@126.comQQ：475818502 */ 时间： 2007-11-16编程论坛首发 */ 声明： 尊重作者劳</description>
    <pubDate>2008-03-07</pubDate>
    <category>C/C++技术资料</category>
    <author>秩名</author>
    <comments>百家拳原创软件教程网</comments>
</item>
<item>
    <title>OpenGL编程轻松入门之曲面和曲线</title>
    <link>/html/C_C__/20080115/1951.html</link>
    <description></description>
    <pubDate>2008-01-15</pubDate>
    <category>C/C++</category>
    <author>
      黄燕
      &lt;/span&gt;&lt;sp</author>
    <comments>
      天极开发
      &lt;/span&gt;&lt;span&gt;</comments>
</item>
<item>
    <title>OpenGL编程轻松入门之特殊效果操作</title>
    <link>/html/C_C__/20080115/1950.html</link>
    <description></description>
    <pubDate>2008-01-15</pubDate>
    <category>C/C++</category>
    <author>
      黄燕
      &lt;/span&gt;&lt;sp</author>
    <comments>
      天极开发
      &lt;/span&gt;&lt;span&gt;</comments>
</item>
<item>
    <title>OpenGL编程轻松入门之纹理映射</title>
    <link>/html/C_C__/20080115/1949.html</link>
    <description></description>
    <pubDate>2008-01-15</pubDate>
    <category>C/C++</category>
    <author>
      黄燕
      &lt;/span&gt;&lt;sp</author>
    <comments>
      天极开发
      &lt;/span&gt;&lt;span&gt;</comments>
</item>
<item>
    <title>OpenGL编程轻松入门之使用光照和材质</title>
    <link>/html/C_C__/20080115/1948.html</link>
    <description></description>
    <pubDate>2008-01-15</pubDate>
    <category>C/C++</category>
    <author>
      黄燕
      &lt;/span&gt;&lt;sp</author>
    <comments>
      天极开发
      &lt;/span&gt;&lt;span&gt;</comments>
</item>
<item>
    <title>OpenGL编程轻松入门之堆栈操作</title>
    <link>/html/C_C__/20080115/1946.html</link>
    <description></description>
    <pubDate>2008-01-15</pubDate>
    <category>C/C++</category>
    <author>
      黄燕
      &lt;/span&gt;&lt;sp</author>
    <comments>
      天极开发
      &lt;/span&gt;&lt;span&gt;</comments>
</item>
<item>
    <title>OpenGL编程轻松入门之显示例表</title>
    <link>/html/C_C__/20080115/1947.html</link>
    <description></description>
    <pubDate>2008-01-15</pubDate>
    <category>C/C++</category>
    <author>
      黄燕
      &lt;/span&gt;&lt;sp</author>
    <comments>
      天极开发
      &lt;/span&gt;&lt;span&gt;</comments>
</item>
<item>
    <title>OpenGL编程轻松入门之坐标变换</title>
    <link>/html/C_C__/20080115/1945.html</link>
    <description></description>
    <pubDate>2008-01-15</pubDate>
    <category>C/C++</category>
    <author>
      黄燕
      &lt;/span&gt;&lt;sp</author>
    <comments>
      天极开发
      &lt;/span&gt;&lt;span&gt;</comments>
</item>
<item>
    <title>OpenGL编程轻松入门之使用颜色</title>
    <link>/html/C_C__/20080115/1944.html</link>
    <description></description>
    <pubDate>2008-01-15</pubDate>
    <category>C/C++</category>
    <author>
      黄燕
      &lt;/span&gt;&lt;sp</author>
    <comments>
      天极开发
      &lt;/span&gt;&lt;span&gt;</comments>
</item>
<item>
    <title>OpenGL编程轻松入门之一个简单的例子</title>
    <link>/html/C_C__/20080115/1943.html</link>
    <description></description>
    <pubDate>2008-01-15</pubDate>
    <category>C/C++</category>
    <author>
      黄燕
      &lt;/span&gt;&lt;sp</author>
    <comments>
      天极开发
      &lt;/span&gt;&lt;span&gt;</comments>
</item>
<item>
    <title>OpenGL编程轻松入门之背景简介</title>
    <link>/html/C_C__/20080115/1942.html</link>
    <description></description>
    <pubDate>2008-01-15</pubDate>
    <category>C/C++</category>
    <author>
      黄燕
      &lt;/span&gt;&lt;sp</author>
    <comments>
      天极开发
      &lt;/span&gt;&lt;span&gt;</comments>
</item>
<item>
    <title>Visual C++程序调试方法入门</title>
    <link>/html/C_C__/20080115/1941.html</link>
    <description></description>
    <pubDate>2008-01-15</pubDate>
    <category>C/C++</category>
    <author>
      阿荣
      &lt;/span&gt;&lt;sp</author>
    <comments>
      vckbase
      &lt;/span&gt;&lt;span&gt;</comments>
</item>
<item>
    <title>利用VC++实现局域网实时视频传输</title>
    <link>/html/C_C__/20080115/1940.html</link>
    <description></description>
    <pubDate>2008-01-15</pubDate>
    <category>C/C++</category>
    <author>
      张勇 于金峰 蔡骅
</author>
    <comments>
      计算机与信息技术
      &lt;/span&gt;&lt;span&gt;</comments>
</item>
<item>
    <title>简单SNMP管理程序的VC++代码实例实现</title>
    <link>/html/C_C__/20080115/1939.html</link>
    <description></description>
    <pubDate>2008-01-15</pubDate>
    <category>C/C++</category>
    <author>
      mmpire
      &lt;/span&gt;&lt;</author>
    <comments>
      blog
      &lt;/span&gt;&lt;span&gt;</comments>
</item>
<item>
    <title>在MFC中应用CTreeCtrl控件的技巧</title>
    <link>/html/C_C__/20080115/1938.html</link>
    <description></description>
    <pubDate>2008-01-15</pubDate>
    <category>C/C++</category>
    <author>
      阿宽
      &lt;/span&gt;&lt;sp</author>
    <comments>
      vckbase
      &lt;/span&gt;&lt;span&gt;</comments>
</item>
<item>
    <title>探讨Windows编程中句柄的本质</title>
    <link>/html/C_C__/20080115/1937.html</link>
    <description></description>
    <pubDate>2008-01-15</pubDate>
    <category>C/C++</category>
    <author>
      
      &lt;/span&gt;&lt;span&gt;</author>
    <comments>
      vchelp
      &lt;/span&gt;&lt;span&gt;</comments>
</item>
<item>
    <title>VC++内部COM插件的编程实现</title>
    <link>/html/C_C__/20080115/1936.html</link>
    <description></description>
    <pubDate>2008-01-15</pubDate>
    <category>C/C++</category>
    <author>
      李晓飞
      &lt;/span&gt;&lt;</author>
    <comments>
      VCKBASE
      &lt;/span&gt;&lt;span&gt;</comments>
</item>
<item>
    <title>VC程序中树型控件节点拖动的完美实现</title>
    <link>/html/C_C__/20080115/1935.html</link>
    <description></description>
    <pubDate>2008-01-15</pubDate>
    <category>C/C++</category>
    <author>
      刘涛
      &lt;/span&gt;&lt;sp</author>
    <comments>
      天极开发
      &lt;/span&gt;&lt;span&gt;</comments>
</item>
<item>
    <title>VC实现类似Windows的颜色选择器</title>
    <link>/html/C_C__/20080115/1934.html</link>
    <description></description>
    <pubDate>2008-01-15</pubDate>
    <category>C/C++</category>
    <author>
      刘涛
      &lt;/span&gt;&lt;sp</author>
    <comments>
      天极开发
      &lt;/span&gt;&lt;span&gt;</comments>
</item>
<item>
    <title>利用VC打造自己的资源浏览器</title>
    <link>/html/C_C__/20080115/1933.html</link>
    <description></description>
    <pubDate>2008-01-15</pubDate>
    <category>C/C++</category>
    <author>
      刘涛
      &lt;/span&gt;&lt;sp</author>
    <comments>
      天极开发
      &lt;/span&gt;&lt;span&gt;</comments>
</item>
<item>
    <title>VC技巧：在程序的状态栏中实现进度条</title>
    <link>/html/C_C__/20080115/1932.html</link>
    <description></description>
    <pubDate>2008-01-15</pubDate>
    <category>C/C++</category>
    <author>
      刘涛
      &lt;/span&gt;&lt;sp</author>
    <comments>
      天极开发
      &lt;/span&gt;&lt;span&gt;</comments>
</item>
<item>
    <title>GIS系统三维地景仿真的设计之基础架构</title>
    <link>/html/C_C__/20080115/1931.html</link>
    <description></description>
    <pubDate>2008-01-15</pubDate>
    <category>C/C++</category>
    <author>
      青岛郎锐
      &lt;/span</author>
    <comments>
      天极开发
      &lt;/span&gt;&lt;span&gt;</comments>
</item>
<item>
    <title>VC++与Matlab混合编程之引擎操作详解</title>
    <link>/html/C_C__/20080115/1930.html</link>
    <description></description>
    <pubDate>2008-01-15</pubDate>
    <category>C/C++</category>
    <author>
      杜鸿飞
      &lt;/span&gt;&lt;</author>
    <comments>
      天极开发
      &lt;/span&gt;&lt;span&gt;</comments>
</item>
<item>
    <title>深入浅出MFC文档/视图架构之实例剖析</title>
    <link>/html/C_C__/20080115/1929.html</link>
    <description></description>
    <pubDate>2008-01-15</pubDate>
    <category>C/C++</category>
    <author>
      宋宝华
      &lt;/span&gt;&lt;</author>
    <comments>
      天极开发
      &lt;/span&gt;&lt;span&gt;</comments>
</item>
<item>
    <title>深入浅出MFC文档/视图架构之相互关系</title>
    <link>/html/C_C__/20080115/1928.html</link>
    <description></description>
    <pubDate>2008-01-15</pubDate>
    <category>C/C++</category>
    <author>
      宋宝华
      &lt;/span&gt;&lt;</author>
    <comments>
      天极开发
      &lt;/span&gt;&lt;span&gt;</comments>
</item>
<item>
    <title>深入浅出MFC文档/视图架构之框架</title>
    <link>/html/C_C__/20080115/1927.html</link>
    <description></description>
    <pubDate>2008-01-15</pubDate>
    <category>C/C++</category>
    <author>
      宋宝华
      &lt;/span&gt;&lt;</author>
    <comments>
      天极开发
      &lt;/span&gt;&lt;span&gt;</comments>
</item>
<item>
    <title>使用SDL打造游戏世界之入门篇</title>
    <link>/html/C_C__/20080115/1926.html</link>
    <description></description>
    <pubDate>2008-01-15</pubDate>
    <category>C/C++</category>
    <author>
      维维编译
      &lt;/span</author>
    <comments>
      天极开发
      &lt;/span&gt;&lt;span&gt;</comments>
</item>
<item>
    <title>深入浅出MFC文档/视图架构之视图</title>
    <link>/html/C_C__/20080115/1925.html</link>
    <description></description>
    <pubDate>2008-01-15</pubDate>
    <category>C/C++</category>
    <author>
      宋宝华
      &lt;/span&gt;&lt;</author>
    <comments>
      天极开发
      &lt;/span&gt;&lt;span&gt;</comments>
</item>
<item>
    <title>深入浅出MFC文档/视图架构之文档</title>
    <link>/html/C_C__/20080115/1924.html</link>
    <description></description>
    <pubDate>2008-01-15</pubDate>
    <category>C/C++</category>
    <author>
      宋宝华
      &lt;/span&gt;&lt;</author>
    <comments>
      天极开发
      &lt;/span&gt;&lt;span&gt;</comments>
</item>
<item>
    <title>深入浅出MFC文档/视图架构之文档模板</title>
    <link>/html/C_C__/20080115/1923.html</link>
    <description></description>
    <pubDate>2008-01-15</pubDate>
    <category>C/C++</category>
    <author>
      宋宝华
      &lt;/span&gt;&lt;</author>
    <comments>
      天极开发
      &lt;/span&gt;&lt;span&gt;</comments>
</item>
<item>
    <title>深入浅出MFC文档/视图架构之基本概念</title>
    <link>/html/C_C__/20080115/1922.html</link>
    <description></description>
    <pubDate>2008-01-15</pubDate>
    <category>C/C++</category>
    <author>
      宋宝华
      &lt;/span&gt;&lt;</author>
    <comments>
      天极开发
      &lt;/span&gt;&lt;span&gt;</comments>
</item>
<item>
    <title>基于Visual C++ 6.0的Add-in编程实例</title>
    <link>/html/C_C__/20080115/1921.html</link>
    <description></description>
    <pubDate>2008-01-15</pubDate>
    <category>C/C++</category>
    <author>
      snaill
      &lt;/span&gt;&lt;</author>
    <comments>
      blog
      &lt;/span&gt;&lt;span&gt;</comments>
</item>
<item>
    <title>在VC中使用Windows管道技术编程</title>
    <link>/html/C_C__/20080115/1920.html</link>
    <description></description>
    <pubDate>2008-01-15</pubDate>
    <category>C/C++</category>
    <author>
      
      &lt;/span&gt;&lt;span&gt;</author>
    <comments>
      blog
      &lt;/span&gt;&lt;span&gt;</comments>
</item>
<item>
    <title>利用MFC文档视图框架编写打印程序</title>
    <link>/html/C_C__/20080115/1919.html</link>
    <description></description>
    <pubDate>2008-01-15</pubDate>
    <category>C/C++</category>
    <author>
      戎亚新
      &lt;/span&gt;&lt;</author>
    <comments>
      vckbase
      &lt;/span&gt;&lt;span&gt;</comments>
</item>
<item>
    <title>用VC++制作播放AVI视频流的动画按钮</title>
    <link>/html/C_C__/20080115/1918.html</link>
    <description></description>
    <pubDate>2008-01-15</pubDate>
    <category>C/C++</category>
    <author>
      刘涛
      &lt;/span&gt;&lt;sp</author>
    <comments>
      天极开发
      &lt;/span&gt;&lt;span&gt;</comments>
</item>
<item>
    <title>基于Visual C++6.0的声音文件操作</title>
    <link>/html/C_C__/20080115/1917.html</link>
    <description></description>
    <pubDate>2008-01-15</pubDate>
    <category>C/C++</category>
    <author>
      刘涛
      &lt;/span&gt;&lt;sp</author>
    <comments>
      天极开发
      &lt;/span&gt;&lt;span&gt;</comments>
</item>
<item>
    <title>VC中利用原始套接字实现网络监听</title>
    <link>/html/C_C__/20080115/1916.html</link>
    <description></description>
    <pubDate>2008-01-15</pubDate>
    <category>C/C++</category>
    <author>
      张志强
      &lt;/span&gt;&lt;</author>
    <comments>
      VCKBASE
      &lt;/span&gt;&lt;span&gt;</comments>
</item>

</channel>
</rss>
