image
lowkeys

这家伙很懒,什么也没写

Ta上传的资源(0)个

C语言预处理命令大全

#define #error #include 条件编译命令 #pragma等等

C 4 0 DOC 2021-05-22 11:05:56

linux网络设备net_dev原理

网络设备在linux内核中的识别,相关的数据结构和函数,模块的加载和卸载,网络设备的注册和注销及相关的函数

网络基础 6 0 RAR 2021-04-19 16:04:36

multi_thread_socket_filetrans

提供了许多线程间通信的实例程序。用linux下的C语言实现。-Provides many examples of thread communication procedures. Under linux using C language.

C 7 0 RAR 2021-01-30 22:01:00

c语言画图示例2

【程序63】题目:画椭圆ellipse 1.程序分析:2.程序源代码:#include "stdio.h"#include "graphics.h"#include "conio.h"main(){int x=360,y=160,dri

金融 10 0 DOC 2020-11-06 05:11:42

CCNA相关配置

网络配置、路由配置、ip配置、vlan配置等相关的CCNA配置的相关步骤

游戏开发 8 0 ZIP 2020-10-27 11:10:16

C语言笔试题库

总结了历年C语言笔试试题,有助于学习者更好的学习C语言

C 20 0 DOC 2020-09-12 01:09:41

连接两个链表c语言

#include "stdlib.h"#include "stdio.h"struct list{ int data;struct list *next;};typedef struct list node;typedef node *link;link de

以太坊 23 0 DOC 2020-08-29 15:08:06

C语言创建列表

题目:创建一个链表。1.程序分析: 2.程序源代码:/*creat a list*/#include "stdlib.h"#include "stdio.h"struct list{ int data;struct list *next;}

C 22 0 DOC 2020-08-22 02:08:16

C语言排序代码

main(){int number[10];input(number);max_min(number);output(number);}input(number)int number[10];{int i;for(i=0;i

C 11 0 DOC 2020-08-19 04:08:58

SOCKET TCP多线程

SOCKET多线程,使用TCP连接,当有一个连接请求时候,建立一个线程。共有两个文件,一个Server,还有一个是Client-SOCKET multithreading, the use of TCP connections, when a link request, the establishm

C 13 0 RAR 2020-07-21 22:07:01