<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
  <channel>
    <title>中科因仑“3+1”工程特种兵精英论坛 - C/C++</title>
    <link>http://bbs.enlern.com/forum-190-1.html</link>
    <description>Latest 20 threads of C/C++</description>
    <copyright>Copyright(C) 中科因仑“3+1”工程特种兵精英论坛</copyright>
    <generator>Discuz! Board by Comsenz Inc.</generator>
    <lastBuildDate>Thu, 21 May 2026 04:29:10 +0000</lastBuildDate>
    <ttl>60</ttl>
    <image>
      <url>http://bbs.enlern.com/static/image/common/logo_88_31.gif</url>
      <title>中科因仑“3+1”工程特种兵精英论坛</title>
      <link>http://bbs.enlern.com/</link>
    </image>
    <item>
      <title>C++中STL(标准模板库)的使用</title>
      <link>http://bbs.enlern.com/thread-21650-1-1.html</link>
      <description><![CDATA[/*
c++标准算法库(STL)
    用于执行基本的算法，比如：for_each(遍历容器)、random_shuffle(随机打乱容器)
    主要实验包含在中，少量封装在中，它是STL的三大核心组件之一
    其他两个是container(容器  常用数据结构)和iterator (迭代器  数据结构访问适配器)
     ...]]></description>
      <category>C/C++</category>
      <author>周定良</author>
      <pubDate>Tue, 24 Jul 2018 23:45:30 +0000</pubDate>
    </item>
    <item>
      <title>编译报错：for loop initial declaration used outside C99 mode的解决办法</title>
      <link>http://bbs.enlern.com/thread-21600-1-1.html</link>
      <description><![CDATA[for loop initial declaration used outside C99 mode
这是一个编译C程序时可能会出现的问题。我们先来看看这个错误的直译：在C99模式之外使用了for循环初始声明
说人话就是：“你在没有用C99模式的情况下在for循环的条件语句里声明了一个变量”
这个错误言下之意就是你 ...]]></description>
      <category>C/C++</category>
      <author>hanmo</author>
      <pubDate>Mon, 02 Apr 2018 11:20:23 +0000</pubDate>
    </item>
    <item>
      <title>九种基本的数值排序算法之二：插入排序</title>
      <link>http://bbs.enlern.com/thread-21593-1-1.html</link>
      <description><![CDATA[二更
插入排序—直接插入排序(Straight Insertion Sort)所谓插入排序，就是依次将新的排序数插入到一个已经排好顺序的有序序列最后再将整个有序序列输出程序设计思路：
从大到小为例，将第一个被输入的排序数看作是一个有序序列，之后新来入的排序数存入序列的最后，往 ...]]></description>
      <category>C/C++</category>
      <author>hanmo</author>
      <pubDate>Wed, 28 Mar 2018 11:56:16 +0000</pubDate>
    </item>
    <item>
      <title>九种基本的数值排序算法之一：冒泡排序</title>
      <link>http://bbs.enlern.com/thread-21583-1-1.html</link>
      <description><![CDATA[首先说明一下冒泡法的大致概念，以排序结果从大到小为例：将用户输入的数值直接存入一个数组，排序数全部输入完成后开始排序，从数组的最后一个元素开始，每个元素都与跟它相邻的前一个元素作比较，如果元素值比前一个要大，就交换这两个元素的值。一轮交换下来， ...]]></description>
      <category>C/C++</category>
      <author>hanmo</author>
      <pubDate>Wed, 21 Mar 2018 08:04:12 +0000</pubDate>
    </item>
    <item>
      <title>c++文件格式解析类（轻松制作自己的PE文件解析器）</title>
      <link>http://bbs.enlern.com/thread-13167-1-1.html</link>
      <description><![CDATA[]]></description>
      <category>C/C++</category>
      <author>曾经最美</author>
      <pubDate>Sat, 26 Mar 2016 09:04:05 +0000</pubDate>
    </item>
    <item>
      <title>用qsort对学生信息排序</title>
      <link>http://bbs.enlern.com/thread-13138-1-1.html</link>
      <description><![CDATA[]]></description>
      <category>C/C++</category>
      <author>脑经急转弯</author>
      <pubDate>Fri, 25 Mar 2016 15:12:22 +0000</pubDate>
    </item>
    <item>
      <title>中断using用法</title>
      <link>http://bbs.enlern.com/thread-13063-1-1.html</link>
      <description><![CDATA[void INT0（）interrupt 0 using 1
{....
 .....
 }
interrupt 0 指明是外部中断0；
interrupt 1 指明是定时器中断0； 
interrupt 2 指明是外部中断1；
interrupt 3 指明是定时器中断1；
interrupt 4 指明是串行口中断；

using 0 是第0组寄存器；
using 1 是第1组寄存 ...]]></description>
      <category>C/C++</category>
      <author>我爱因仑风</author>
      <pubDate>Sun, 20 Mar 2016 07:27:09 +0000</pubDate>
    </item>
    <item>
      <title>c语言中bit和sbit的区别</title>
      <link>http://bbs.enlern.com/thread-13056-1-1.html</link>
      <description><![CDATA[1．bit和sbit都是C51扩展的变量类型。

        bit和int char之类的差不多，只不过char=8位, bit=1位而已。都是变量，编译器在编译过程中分配地址。除非你指定，否则这个地址是随机的。这个地址是整个可寻址空间，RAM+FLASH+扩展空间。bit只有0和1两种值，意义有点像Wi ...]]></description>
      <category>C/C++</category>
      <author>谭力源</author>
      <pubDate>Sat, 19 Mar 2016 09:36:52 +0000</pubDate>
    </item>
    <item>
      <title>新型的按键扫描程序，仅三行程序</title>
      <link>http://bbs.enlern.com/thread-13043-1-1.html</link>
      <description><![CDATA[新型的按键扫描程序[/backcolor]
不过我在网上游逛了很久，也看过不少源程序了，没有发现这种按键处理办法的踪迹，所以，我将他共享出来，和广大同僚们共勉。我非常坚信这种按键处理办法的便捷和高效，你可以移植到任何一种嵌入式处理器上面，因为C语言强大的可移植性。 ...]]></description>
      <category>C/C++</category>
      <author>liliuyang</author>
      <pubDate>Thu, 17 Mar 2016 02:41:23 +0000</pubDate>
    </item>
    <item>
      <title>高质量C++编程指南</title>
      <link>http://bbs.enlern.com/thread-11467-1-1.html</link>
      <description><![CDATA[一本书，有兴趣可以看看]]></description>
      <category>C/C++</category>
      <author>XJzy</author>
      <pubDate>Thu, 24 Sep 2015 14:20:45 +0000</pubDate>
    </item>
    <item>
      <title>IAR IDE的一些使用方法</title>
      <link>http://bbs.enlern.com/thread-9165-1-1.html</link>
      <description><![CDATA[]]></description>
      <category>C/C++</category>
      <author>liyang</author>
      <pubDate>Sat, 11 Apr 2015 13:41:45 +0000</pubDate>
    </item>
    <item>
      <title>给初学C语言的朋友 的建议、转</title>
      <link>http://bbs.enlern.com/thread-8196-1-1.html</link>
      <description><![CDATA[初学C语言的朋友应该首先了解C语言关键的核心概念(结构化、三个执行流程、优先级、指针、文件、共用体、函数、作用域、重载等 )，只有弄明白了这些才能在今后的学习中游刃有余的把握C语言的精髓。这几个概念就像逻辑线一样，把整个C语言的体系贯穿起来，给人一种“ ...]]></description>
      <category>C/C++</category>
      <author>liyang</author>
      <pubDate>Tue, 17 Mar 2015 11:55:52 +0000</pubDate>
    </item>
    <item>
      <title>c语言书籍</title>
      <link>http://bbs.enlern.com/thread-7933-1-1.html</link>
      <description><![CDATA[链接：http://pan.baidu.com/s/1ntFqmUH 密码：kbq7]]></description>
      <category>C/C++</category>
      <author>liyang</author>
      <pubDate>Wed, 11 Mar 2015 09:21:06 +0000</pubDate>
    </item>
    <item>
      <title>2.3G 谭浩强《C程序设计》随书光盘教学视频共51讲</title>
      <link>http://bbs.enlern.com/thread-7932-1-1.html</link>
      <description><![CDATA[链接：http://pan.baidu.com/s/1eQo0eK6 密码：av9d]]></description>
      <category>C/C++</category>
      <author>liyang</author>
      <pubDate>Wed, 11 Mar 2015 09:12:46 +0000</pubDate>
    </item>
    <item>
      <title>工信部动作不断 力推中国机器人产业发展</title>
      <link>http://bbs.enlern.com/thread-7842-1-1.html</link>
      <description><![CDATA[　　OFweek机器人网讯：3月3日从工信部网站获悉，日前，工信部印发了《2015年原材料工业转型发展工作要点》。根据该工作要点，在机器人产业方面，扩大关键岗位机器人应用。在健康危害和危险作业环境、重复繁重劳动、智能采样分析等岗位推广一批专业机器人。要点还提到加 ...]]></description>
      <category>C/C++</category>
      <author>ofweek001</author>
      <pubDate>Thu, 05 Mar 2015 07:46:18 +0000</pubDate>
    </item>
    <item>
      <title>-1和1的数值比较 [小题目]</title>
      <link>http://bbs.enlern.com/thread-7793-1-1.html</link>
      <description><![CDATA[运算结果-刮刮乐请刮开（或者Ctrl+a）：常量后面接L表示long型存储，U表示unsigned，F表示float

此题的关键是 -1L &gt; 1UL

一个是long型，一个是unsigned long型，无符号和有符号的比较，那么编译器会把有符号的转换为无符号。
-1L = 0xFFFFFFFF
1UL = 0x00000001

因为 ...]]></description>
      <category>C/C++</category>
      <author>等待苍老的谁</author>
      <pubDate>Wed, 07 Jan 2015 05:00:26 +0000</pubDate>
    </item>
    <item>
      <title>宏定义 比较两个数大小</title>
      <link>http://bbs.enlern.com/thread-7792-1-1.html</link>
      <description><![CDATA[宏定义 比较两个数大小
宏定义可以使代码更清晰
C语言几个比较有意思的题目
答案-刮刮乐请刮开：#define MIN(A,B) ( (A)]]></description>
      <category>C/C++</category>
      <author>等待苍老的谁</author>
      <pubDate>Wed, 07 Jan 2015 04:56:23 +0000</pubDate>
    </item>
    <item>
      <title>C语言细节问题</title>
      <link>http://bbs.enlern.com/thread-7695-1-1.html</link>
      <description><![CDATA[C语言中的细节
1.1      “零值”比较
1.   写出float x 与“零值”比较的if语句。
首先要知道float是有精度的，不能直接与0相比较或者两数相减与0相比较。float能保留几位小数?
答案是6位。既然如此，那么就应该这么写：

1.2      宏定义
1.   定义一个宏，返回X、Y ...]]></description>
      <category>C/C++</category>
      <author>伊海</author>
      <pubDate>Sat, 29 Nov 2014 11:26:59 +0000</pubDate>
    </item>
    <item>
      <title>自动取款机系统(程序）</title>
      <link>http://bbs.enlern.com/thread-7693-1-1.html</link>
      <description><![CDATA[/*****************************************************
 **程序名称：自动取款机系统
 **实现功能  1 查询 2 存款 3 存款 4 转账 5 修改密码 
 **作者：伊海
 **时间：14-11-24
 *****************************************************/



 ...]]></description>
      <category>C/C++</category>
      <author>伊海</author>
      <pubDate>Sat, 29 Nov 2014 11:07:37 +0000</pubDate>
    </item>
    <item>
      <title>猜猜这是赞美的什么？？？</title>
      <link>http://bbs.enlern.com/thread-7651-1-1.html</link>
      <description><![CDATA[微而不卑，低而不贱，无参天之势，涵永恒之气。身不盈寸，躯不为材，志在凌霄，君未可知。强风不屈，洪雨不惧，秋隐春发，永无止尽。饲可育虫畜，燃可驱寒邪，身销魂尤在，利物不求争。[/backcolor] ...]]></description>
      <category>C/C++</category>
      <author>张衍波</author>
      <pubDate>Sat, 08 Nov 2014 07:19:30 +0000</pubDate>
    </item>
  </channel>
</rss>