摘要:
多路复用的代码 阅读全文
摘要:
简单介绍了LVGL中slider的使用 阅读全文
摘要:
HTTP与HTTPS的区别 阅读全文
摘要:
本文章介绍了UDP/IP协议的特点,及运用代码实现UDP的广播 阅读全文
摘要:
配置工具wsl Windows Subsystem for Linux(简称WSL)是一个在Windows 10\11上能够运行原生Linux二进制可执行文件(ELF格式)的兼容层。使用wsl可以最大限度在windows下运行linux系统。 开启wsl 下载vscode,再配置wsl,window 阅读全文
摘要:
本文以图的形式介绍了system -V IPC信号量的主要作用以及使用的例程,并且用买卖车为例子介绍了信号量的具体使用方法。 阅读全文
摘要:
本文介绍了system-V IPC中的共享内存的函数接口及代码实现思路 阅读全文
摘要:
#include <stdio.h> #include <stdlib.h> #include <unistd.h> int Fun(int num); int Fun(int num) { pid_t pid; printf("It's a father process, it will have 阅读全文
摘要:
目录1. #include <stdio.h>2.int 整形数据类型3.main 函数4.printf 函数5.return 函数6.”{}”与“;” “Hellow world!"是初学者的第一份代码,可以说所学万物代码之基础。下面看一下代码是如何实现的: 代码虽然简洁,但是包含了许多C语言的知 阅读全文