全部博文(2759)
发布时间:2013-04-02 09:04:51
C语言的库函数也很牛逼啊!很牛逼也就导致了很方便,C语言也能很方便的组装SQL语句。实在想不出啥废话了,直接上代码先:#include <stdio.h>#define SQL_SIZE 500int main(){ char sql[SQL_SIZE];  .........【阅读全文】
发布时间:2013-04-02 09:04:02
先上代码再解释:#include <stdio.h>#include <fcntl.h>#include <sys/types.h>#include <sys/stat.h>#include <linux/limits.h>int main(){ int i; //关闭所有已经打开的文件.........【阅读全文】
发布时间:2013-04-02 09:03:40
作为Linuxer,必须具备一定的CLI操作能力。有时候用CLI会比用GUI会更方便快捷。以下列出我所知道的一些常用CLI软件,仅供参考。中文终端。据我所知,目前主要有两个解决方案:zhcon和fbterm。两个我都用过,zhcon较长时间不更新了,问题比较多。不小心加错参数,甚至可能会导致死机。所以我推荐fbterm,这个还是.........【阅读全文】
发布时间:2013-04-02 09:01:45
操作系统:ubuntu11.10编译环境:gcc测试实例:点击(此处)折叠或打开#include #include #include const char ro_1[ ] = {"this is read only data"}; &nb.........【阅读全文】
发布时间:2013-04-02 09:01:30
一、System.Threading.Timer 与System.Windows.Forms.Timer System.Threading.Timer 是一个简单的轻量计时器,它使用回调方法并由线程池线程提供服务。不建议将其用于 Windows 窗体,因为其回调不在用户界面线程上进行(硬要使用的话只能通过委托的方式进行操作界面元素处理)。 System.Windows.Forms.Timer 是用于 Wind.........【阅读全文】