上一页 1 ··· 40 41 42 43 44 45 46 47 48 ··· 621 下一页

2024年6月30日

摘要: 四元数 指针、四元数 指针 四元数 指针 四元数 指针 阅读全文
posted @ 2024-06-30 20:22 lydstory 阅读(18) 评论(0) 推荐(0)

2024年6月29日

摘要: #include <iostream> using namespace std; void fun(int n) { if (n == 0) { cout << 0; return; } int binary[32]; // 存储二进制数的数组 int i = 0; while (n > 0) { 阅读全文
posted @ 2024-06-29 09:58 lydstory 阅读(35) 评论(0) 推荐(0)

2024年6月28日

摘要: 一、官方指导 To Create an Unmanaged Application follow these steps for implementing an unmanaged application. 1. include <NuiApi.h> in your source code 2. f 阅读全文
posted @ 2024-06-28 16:50 lydstory 阅读(51) 评论(0) 推荐(0)
摘要: https://www.avermedia.cn/ 阅读全文
posted @ 2024-06-28 14:34 lydstory 阅读(12) 评论(0) 推荐(0)
摘要: #include <iostream> using namespace std; size_t strlcpy(char *dst, const char *src, size_t siz) { char *d = dst; const char *s = src; size_t n = siz; 阅读全文
posted @ 2024-06-28 10:43 lydstory 阅读(10) 评论(0) 推荐(0)

2024年6月27日

摘要: disk_everything文件查找软件 阅读全文
posted @ 2024-06-27 11:16 lydstory 阅读(15) 评论(0) 推荐(0)

2024年6月26日

摘要: openssl 与证书 openssl 与证书 openssl 与证书 openssl 与证书 阅读全文
posted @ 2024-06-26 21:38 lydstory 阅读(14) 评论(0) 推荐(0)

2024年6月25日

摘要: https://www.msys2.org/ pacman -S mingw-w64-ucrt-x86_64-gcc C:\msys64\ucrt64\bin pacman -S mingw-w64-ucrt-x86_64-gdb 阅读全文
posted @ 2024-06-25 13:33 lydstory 阅读(59) 评论(0) 推荐(0)

2024年6月22日

摘要: #include <stdio.h> #include <stdint.h> // CRC-16-CCITT标准的多项式 #define POLY 0x1021 uint16_t crc16(uint16_t crc, const unsigned char *buffer, size_t len) 阅读全文
posted @ 2024-06-22 23:46 lydstory 阅读(32) 评论(0) 推荐(0)
摘要: #include <stdio.h> #include <stdint.h> uint16_t crc16(uint8_t *data, int length) { uint16_t crc = 0xFFFF; for (int i = 0; i < length; i++) { crc ^= da 阅读全文
posted @ 2024-06-22 13:11 lydstory 阅读(26) 评论(0) 推荐(0)
上一页 1 ··· 40 41 42 43 44 45 46 47 48 ··· 621 下一页

导航