WinPcap编程之旅一 摘要:开发环境准备:1、安装 WinPcap_4_1_3.exe 驱动2、WinPcap开发包3、QT6开发环境4、参考博客:https://www.cnblogs.com/blacksword/archi…… 文章列表 2021年11月01日 0 点赞 0 评论 816 浏览 评分: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 评论 749 浏览 评分:0.0
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 评论 300 浏览 评分:9.9
从字符串中提取元音字母输出 摘要:#include <stdio.h>#include <stdlib.h>#include <string.h>int main(){ char a[100]; char b[100]; …… 文章列表 2021年10月31日 0 点赞 0 评论 713 浏览 评分:9.9
TCP网络编程之静态进程池 摘要:公共代码:#pragma once #include<stdio.h> #include<stdint.h> #include<string.h> #include<unistd.h> #i…… 文章列表 2021年10月29日 0 点赞 0 评论 625 浏览 评分:9.9
TCP网络编程之http请求 摘要:公共头文件:#pragma once #include<stdio.h> #include<stdint.h> #include<string.h> #include<unistd.h> #…… 文章列表 2021年10月29日 0 点赞 0 评论 379 浏览 评分:9.9
TCP网络编程之多进程并发 摘要:公共头文件:#pragma once #include<stdio.h> #include<stdint.h> #include<string.h> #include<unistd.h> #…… 文章列表 2021年10月29日 0 点赞 0 评论 321 浏览 评分:0.0
TCP网络编程之一切皆文件 摘要:公共代码:#pragma once #include<stdio.h> #include<stdint.h> #include<string.h> #include<unistd.h> #i…… 文章列表 2021年10月29日 0 点赞 0 评论 302 浏览 评分:4.0
二级C语言计算指定范围素数和的代码(自己的看法,初学者多有考虑不周,代码可能较为啰嗦) 摘要:对于3以内(即1,2)的素数,受到自定义函数中的素数判断范围限制,由于本人目前能力较低,无法有更好的处理方式,只能通过分类讨论的方式将1,2单独拿出来对m,n进行讨论,显得代码太过于累赘,可读性较差~…… 文章列表 2021年10月28日 0 点赞 0 评论 291 浏览 评分:8.0
做题技巧-C语言 摘要:#### 常用代码技巧 ##### 1. EOF C语言中,`EOF`常被作为`文件结束的标志`。 宏`EOF`的值就是`-1`. ASCII代码值的范围是`0~127`,不可能出现`-1`,…… 文章列表 2021年10月28日 0 点赞 0 评论 754 浏览 评分:9.9