
C语言
Flame_Cyclone
c++, win32 api, 6502汇编 研究爱好者
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
遍历目录文件路径(Win32, C++)
Win32 遍历目录文件路径原创 2023-03-09 19:01:17 · 617 阅读 · 0 评论 -
获取PE文件导入的dll列表(Win32, C++)
最近需=编写检查某个PE文件(exe或者dll)依赖的dll有哪些, 于是查找资料尝试编写了这段代码, 经测试, 在x64或者x86环境下均可获取x64和x86的PE文件的dll列表.原创 2022-11-17 14:14:46 · 432 阅读 · 0 评论 -
获取电池状态(Win32, C++)
Win32 获取电池电压, 充放电功率原创 2022-10-19 09:55:45 · 790 阅读 · 0 评论 -
杨辉三角C语言
#include "stdio.h" #include <iostream> #include <iomanip> using namespace std; void Triangle(); int GetNumWidth(int nNum); void PrintSpace(int nWidth, int nCount); int main(int argc, ch...原创 2018-07-05 10:12:57 · 842 阅读 · 0 评论 -
大数乘法
// BigMult.cpp : Defines the entry point for the console application. // #include "stdafx.h" #include <iostream> using namespace std; #include <time.h> #define SZBUF_MAX 1048576 int Ca...原创 2018-08-22 23:55:39 · 295 阅读 · 0 评论