2012年(24)
发布时间:2012-08-24 18:27:55
点击(此处)折叠或打开#include <stdio.h>int count = 3;int main(void){ int i = 0, sum = 0, count = 2; for(; i < count; i += 2,count++) &nbs.........【阅读全文】
发布时间:2012-08-17 11:07:14
http://blog.csdn.net/ljx0305/article/details/4065058 epoll - I/O event notification facility在linux的网络编程中,很长的时间都在使用select来做事件触发。在linux新的内核中,有了一种替换它的机制,就是epoll。相比于select,epoll最大的好处在于它不会随着监听fd数目的增长而降低效率。因为在内核中的selec.........【阅读全文】
发布时间:2012-08-13 16:21:03
http://blogger.org.cn/blog/more.asp?name=FoxWolf&id=28282scanf(格式化字符串输入)相关函数scanf,fscanf表头文件#include<stdio.h>定义函数int sscanf (const char *str,const char * format,........);函数说明sscanf()会将参数str的字符串根据参数format字符串来转换并格式.........【阅读全文】
发布时间:2012-08-11 14:01:11
转自:http://blog.sina.com.cn/s/blog_64ba2b750100vz5b.htmlgetopt被用来解析命令行选项参数。#include <unistd.h> extern char *optarg; //选项的参数指针 extern int optind, //下一次调用geto.........【阅读全文】