TCP网络编程之多进程并发 摘要:公共头文件:#pragma once #include<stdio.h> #include<stdint.h> #include<string.h> #include<unistd.h> #…… 文章列表 2021年10月29日 0 点赞 0 评论 274 浏览 评分:0.0
TCP网络编程之http请求 摘要:公共头文件:#pragma once #include<stdio.h> #include<stdint.h> #include<string.h> #include<unistd.h> #…… 文章列表 2021年10月29日 0 点赞 0 评论 326 浏览 评分:9.9
TCP网络编程之静态进程池 摘要:公共代码:#pragma once #include<stdio.h> #include<stdint.h> #include<string.h> #include<unistd.h> #i…… 文章列表 2021年10月29日 0 点赞 0 评论 570 浏览 评分:9.9
从字符串中提取元音字母输出 摘要:#include <stdio.h>#include <stdlib.h>#include <string.h>int main(){ char a[100]; char b[100]; …… 文章列表 2021年10月31日 0 点赞 0 评论 673 浏览 评分:9.9
Fibonacci数列的迭代,递归和动态规划。 摘要:迭代:#include <stdio.h>#include <stdlib.h>int main(){ int i = 1,j = 1,temp,n,N,x; scanf("%d",&N)…… 文章列表 2021年10月31日 0 点赞 1 评论 273 浏览 评分:9.9
把一个一维数组的全部赋给另一个一维数组的第i个 摘要:类似 array1=[2,2,2,2],array2=[2,3,3],array3[3.5],变成array4=[[2,2,2,2],[2,3,3],[3,5]]#include <stdio.h>#…… 文章列表 2021年11月01日 0 点赞 0 评论 657 浏览 评分:0.0
WinPcap编程之旅一 摘要:开发环境准备:1、安装 WinPcap_4_1_3.exe 驱动2、WinPcap开发包3、QT6开发环境4、参考博客:https://www.cnblogs.com/blacksword/archi…… 文章列表 2021年11月01日 0 点赞 0 评论 748 浏览 评分:9.9
WinPcap编程之旅二 摘要:一、QT配置:二、测试代码:#include "pcap.h" #include <QCoreApplication> #include <winsock2.h> #include <ws2tc…… 文章列表 2021年11月01日 0 点赞 0 评论 410 浏览 评分:0.0
WinPcap编程之旅三 摘要:测试代码: 参考:https://www.cnblogs.com/blacksword/archive/2012/03/10/2389153.html 由前两节的铺垫,我们已经知道如何获取本地…… 文章列表 2021年11月01日 0 点赞 0 评论 361 浏览 评分:0.0
WinPcap编程之旅四 摘要: 这一次要分析的实例程序跟上一讲非常类似(“打开适配器并捕获数据包”),略微不同的一点是本次将pcap_loop()函数替换成了pcap_next_ex()函数。本节的重点也就是说一下这两个函…… 文章列表 2021年11月01日 0 点赞 0 评论 367 浏览 评分:0.0