#include <Windows.h> #pragma comment(linker,"/subsystem:\"Windows\" /entry:\"main\"") int main() { while (true) { if ((GetAsyncKeyState(VK_LWIN...
#include <cstdio> #include <fstream> #include <cstring> #include <string> #include <windows.h> using namespace std; // 执行命令行命令 inline void CMD(string str) { syst...
1、虚拟串口配置,使用虚拟串口助手配置虚拟串口,注:选择一个未被使用的串口进行实验 虚拟串口配置程序下载地址:https://download.csdn.net/download/wangzhiyang925/20395464 模拟串口收发配置程序下载:https://download.csdn.net/download/wangzhiyang925/20395980COM10发送消息:...
#include <stdio.h> #include <string.h> #include <stdlib.h> #include <fcntl.h> #include <unistd.h> #include <getopt.h> #include <termios.h> //s...
C语言字符串处理本文主要记录自己学习C语言字符串处理时常用的函数,方便以后使用查找,代码如下:#include <stdio.h> #include <string.h>//字符串需调用 #include <stdlib.h>//字符串、整型转换要用 int main(int argc, char *argv[]) { ...
C和C++常用代码片段整理整理一些C和C++常用的代码片段,方便自己快速开发。先总结一些C++的,C++支持函数重载,写得爽些。main.cpp:#include <iostream> #include "util.h" int main() { std::cout << "sandeepin poi!" <&l...
对于 Win32 API 方式,您需要GetProcessMemoryInfo函数。这是来自MSDN 页面的示例,但代码使用 C++。#include <windows.h> #include <stdio.h> #include <psapi.h> void PrintMemoryInfo( DWORD processID ) { HANDLE...
#include <windows.h> #include <stdio.h> int main() { HKEY hKey; //HKEY_CURRENT_USER\test」 if (RegOpenKeyEx(HKEY_CURRENT_USER, TEXT("test"), 0, KEY_SET_VALUE, &am...
include <locale.h>int main(){setlocale(LC_ALL,"chs"); //输出中文}
#include <Windows.h> #include <stdio.h> #include <stdlib.h> typedef BOOL (*LPFNENUMERATEWINDOWCALLBACK)(HWND hWnd); void EnumetareWindows(HWND hWndParent, LPFNENUMERATEWINDOWCAL...