摘要: #include <stdio.h>#include <sys/socket.h>#include <sys/types.h>#include <stdlib.h>#include <netinet/in.h>#include <errno.h>#include <string.h>#include 阅读全文
posted @ 2019-03-26 16:20 uncle&loir 阅读(73) 评论(0) 推荐(0)
摘要: #include <stdio.h> #include <stdlib.h>#include <string.h>typedef struct student{ int score; struct student *next;} LinkList;LinkList *creat(int n){ Li 阅读全文
posted @ 2019-03-26 16:18 uncle&loir 阅读(107) 评论(0) 推荐(0)
摘要: 转自:http://www.cnblogs.com/shenlian/archive/2011/05/21/2053149.html 在网上搜索函数指针,看到一个例子。开始没看懂,想放弃,可是转念一想,这个用法迟早要弄懂的,现在多花点时间看懂它,好过以后碰到了要再花一倍时间来弄懂它。其实很多时候都是 阅读全文
posted @ 2017-09-06 15:36 uncle&loir 阅读(108) 评论(0) 推荐(0)