Ubuntu Linux下配置C/C++环境
环境操作系统:ubuntu-22.04.4安装1. 更新软件包列表,检查可用的软件包更新 sudo apt update2. 安装编译软件所必需的元包 build-essential。sudo apt install build-essential它们包括 GNU...
WindowsAPI-控件:SysStatusBar
使用WindowsAPI,创建SysStatusBar控件:#include <windows.h> #include <commctrl.h> #pragma comment(lib, 'comctl32.lib') HINSTANCE hInst; HWND hwndStatusBar; void Initiali...
Windows:VSCode安装与配置C/C++环境
VSCode安装:先在官网下载VSCode,如果官网下载很慢,你可以点击下方链接:安装时的安装路径尽可能不要的存在中文,其余没有什么需要注意的配置C/C++环境:首先你需要配置C/C++环境,你可以参考...