- 博客(22)
- 资源 (1)
- 收藏
- 关注
原创 VMWare安装虚拟机报错,VMware 启动虚拟机报错,您的主机不满足在启用 Hyper-V 或Device/Credential Guard 的情况下运行 VMware Workstatio
VMWare安装虚拟机报错,VMware 启动虚拟机报错,您的主机不满足在启用 Hyper-V 或Device/Credential Guard 的情况下运行 VMware Workstatio
2022-09-12 16:05:44 2093
原创 C语言基于数组实现删除指定字符串
#include <stdio.h>#include <string.h>#include <stdlib.h>#include <strings.h>void delete_char(char str[],char delete_ch);int main(){ char buf[128]={0}; printf("输入一个字符串:\n"); fgets(buf,sizeof(buf),stdin); print...
2021-10-07 09:56:28 738
原创 C语言 select减函数io多路复用实现并发服务器,回传客户端发送的消息
* 描 述:select多路复用实现并发,回传客户端数据#include <stdio.h>#include <string.h>#include <stdlib.h>#include <strings.h>#include <sys/types.h>#include <sys/socket.h>#include <arpa/inet.h>#include <netinet/in.h&g...
2021-09-12 21:11:35 222
原创 C语言 多进程并发服务器
描 述:多进程并发TCP服务器,回传客户端发来的数据#include <stdio.h>#include <string.h>#include <stdlib.h>#include <strings.h>#include <sys/types.h>#include <sys/socket.h>#include <arpa/inet.h>#include <netinet/in.h>#in...
2021-09-12 21:07:42 368
原创 C语言 UDP服务器通过多路IO复用同时处理标准输入和套接字。当输入为quit时程序结束;当通过套接字收到对方消息时回射给对方
select();函数:select函数原型:int select(int nfds, fd_set *readfds, fd_set *writefds, fd_set *exceptfds, struct timeval *timeval);void FD_CLR(int fd, fd_set *set);int FD_ISSET(int fd, fd_set *set);void FD_SET(int fd, fd_set *set);void FD_ZERO(fd_set *
2021-09-12 20:50:56 749
原创 C语言多线程实现并发服务器
功能:将客户端发发送到服务器的数据转发回去给客户端服务端:#include <stdio.h>#include <string.h>#include <stdlib.h>#include <strings.h>#include <sys/types.h>#include <sys/socket.h>#include <arpa/inet.h>#include <netinet/in.h>.
2021-09-06 23:56:51 890
原创 C语言实现对一个文本内容的加密与解密
加密#include <stdio.h>#include <string.h>#include <stdlib.h>#include <strings.h>#include <sys/types.h>#include <sys/stat.h>#include <fcntl.h>#include <unistd.h>int main(int argc,char *argv[]){ i...
2021-08-26 21:50:25 606
原创 C语言利用函数实现一张的加密与解密
#include <stdio.h>#include <string.h>#include <stdlib.h>#include <strings.h>#include <sys/types.h>#include <sys/stat.h>#include <fcntl.h>#include <unistd.h>int main(int argc, char *argv[]){ int f...
2021-08-26 21:47:48 322
原创 C语言使用read、write函数实现文件内容的复制
#include <stdio.h>#include <string.h>#include <stdlib.h>#include <strings.h>#include <unistd.h>#include <sys/types.h>#include <sys/stat.h>#include <fcntl.h>int main(int argc,char *argv[]){ char b...
2021-08-26 21:44:29 1089
原创 C语言,将输入的字符串逆序输出(指针实现)
#include <stdio.h>#include <string.h>#include <stdlib.h>#include <strings.h>void swap(char *head,char *tail);int main(){ char str[64]={0},*p=NULL,*p2=NULL,*p3=NULL; int len,i; printf("输入一个字符串:"); gets(str); ...
2021-08-19 22:39:26 3560
原创 C语言在二维数组中查找最大值,通过函数实现
#include <stdio.h>#include <string.h>#include <stdlib.h>#include <strings.h>#include <time.h>int find_max();int main(){ srand(time(NULL)); int a[5][5]; int i,j; for(i=0;i<5;i++) ...
2021-08-05 22:47:49 3245
原创 VHDL闹钟
基于DE2-115 VHDL编写的闹钟,具有时间显示,闹钟定时显示以及闹钟功能。译码器显示部分LIBRARY IEEE;USE IEEE.STD_LOGIC_1164.ALL;USE IEEE.STD_LOGIC_UNSIGNED.ALL;ENTITY INBCD7 ISPORT( A:IN INTEGER; DOUT1:OUT STD_LOGIC_VECTOR(6 DOWNTO 0):="1000000"; DOUT2:OUT STD_LOGIC_V...
2021-07-03 11:41:31 483
STM32 SPI驱动 CH9434串口拓展芯片
2022-09-13
VMWare安装虚拟机报错,VMware 启动虚拟机报错,您的主机不满足在启用 Hyper-V 或Device/Credenti
2022-09-12
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人