小项目进阶
纯个人手工撸代码喽~~~
God_bless_TYY
将来的我一定会感激现在拼命的自己
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
HTTP协议实用-日期操作CGI程序
#include <stdio.h> #include <unistd.h> #include <stdlib.h> #include <string.h> #define SIZE (1024 * 10) class Date { public : Date(int year = 2000, int mounth = 1, int d...原创 2018-09-16 13:17:26 · 385 阅读 · 0 评论 -
HTTP协议实用-加法CGI程序
#include <stdio.h> #include <unistd.h> #include <stdlib.h> #include <string.h> #define SIZE (1024 * 10) int get_http_request(char* query) { //1.获取到方法 char* method = ...原创 2018-09-16 13:12:29 · 339 阅读 · 0 评论 -
HTTP协议实用-底层实现客户端服务端交互流程(socket & bind & listen & accept & 多线程处理业务 & close)
#include <stdio.h> #include <stdlib.h> #include <string.h> #include <errno.h> #include <unistd.h> #include <sys/socket.h> #include <arpa/inet.h> #include &am原创 2018-09-16 13:02:25 · 404 阅读 · 0 评论 -
小游戏之三子棋
三子棋游戏实现原创 2018-04-17 21:22:49 · 477 阅读 · 0 评论 -
小游戏之扫雷
扫雷游戏实现原创 2018-04-21 09:03:21 · 548 阅读 · 0 评论
分享