淡定从容,宁静致远
全部博文(329)
发布时间:2014-09-09 09:50:30
#include <stdio.h>#include <stdlib.h>typedef int DLL_DataType;typedef struct Node{DLL_DataType data;struct Node *pre,*next;}DLL_Node;typedef struct{DLL_Node *head,*tail;}DList;DLL_Node* DLL_makeNode(DLL_DataType value){DLL_Node*new_ptr=malloc(sizeof(DLL_Node));new_ptr->data=value.........【阅读全文】
发布时间:2014-09-09 09:38:21
#include <time.h>#include <sys/types.h>#include <sys/socket.h>#include <netinet/in.h>#include <netinet/ip.h>#include <stdio.h>#define BUFSIZE 128int main(void){ int sd; struct sockaddr_in my_end, his_end; socklen_t his_len; .........【阅读全文】
发布时间:2014-09-08 22:48:41
home/brimmer/src]$ ctags -R"-R"表示递归创建,也就包括源代码根目录下的所有子目录下的源程序。"tags"文件中包括这些对象的列表:l 用#define定义的宏l 枚举型变量的值l &.........【阅读全文】
发布时间:2014-09-08 11:24:05
long,指针在64位和32位下分别占多少字节 32位 64位 long 4 8 指针 4 8......【阅读全文】