程序设计语言 第4页
程序设计相关语言,如:C语言
Sublime Text配置C/C++教程-C佳家

Sublime Text配置C/C++教程

下载Sublime Text先下载(百度网盘)安装软件,或去官网安装,除了选择安装路径之外,其它一直next即可。新建文件夹安装软件软件后,我们在桌面新建一个文件夹,名字无所谓,将文件夹拖动至快捷...
Ciallo~(∠・ω< )⌒★的头像-C佳家高级会员Ciallo~(∠・ω< )⌒★20小时前
0417
WindowsAPI-控件:ProgressBar-C佳家

WindowsAPI-控件:ProgressBar

使用WindowsAPI,创建ProgressBar控件:#include <windows.h> #include <commctrl.h> #define TIMER_ID 1 #pragma comment(lib, 'comctl32.lib') HWND hwndProgressBar; int c = 0;...
用户80404320的头像-C佳家高级会员用户804043202个月前
04015
Windows:配置C++17/20-C佳家

Windows:配置C++17/20

安装软件点击 MSYS2 (百度网盘)下载,或者是去到 MSYS2官网下载,并完成安装。配置环境下载环境:在安装路径下找到:msys2.exe,并打开。接着粘贴:pacman -Syu --disable-download-timeout提...
Ciallo~(∠・ω< )⌒★的头像-C佳家高级会员Ciallo~(∠・ω< )⌒★20小时前
0409
Ubuntu Linux下配置C/C++环境-C佳家

Ubuntu Linux下配置C/C++环境

环境操作系统:ubuntu-22.04.4安装1. 更新软件包列表,检查可用的软件包更新 sudo apt update2.  安装编译软件所必需的元包 build-essential。sudo apt install build-essential它们包括 GNU...
Ciallo~(∠・ω< )⌒★的头像-C佳家高级会员Ciallo~(∠・ω< )⌒★2个月前
0398
每日C++(25年):7月7日 - 7月13日-C佳家

每日C++(25年):7月7日 – 7月13日

7月7日:string:std::string::contains7月8日:string:std::string::swap7月9日:string:std::string::reserve7月10日:string:std::string::resize7月11日:string:std::string::shrink_t...
Ciallo~(∠・ω< )⌒★的头像-C佳家高级会员Ciallo~(∠・ω< )⌒★18天前
03915
vcpkg: Win11环境包管理工具配置教程-C佳家

vcpkg: Win11环境包管理工具配置教程

安装:1. 先打开任意一个空文件夹(假设文件夹路径为: c:\src),先将vcpkg克隆到本地:git clone https://github.com/microsoft/vcpkg如果您无法克隆到本地,您可以直接下载文件并解压到空文...
Ciallo~(∠・ω< )⌒★的头像-C佳家高级会员Ciallo~(∠・ω< )⌒★2个月前
03815
WindowsAPI-控件:Static-C佳家

WindowsAPI-控件:Static

使用WindowsAPI,创建一个static控件:#include <windows.h> #include <CommCtrl.h> #pragma comment(lib, 'comctl32.lib') // 窗口过程函数 LRESULT CALLBACK WindowProc(HWND hwn...
用户80404320的头像-C佳家高级会员用户804043202个月前
03811
WindowsAPI-控件:ToolBar-C佳家

WindowsAPI-控件:ToolBar

使用WindowsAPI,创建ToolBar控件:#include <windows.h> #include <commctrl.h> #pragma comment(lib, 'comctl32.lib') #define ID_TOOLBAR 201 LRESULT CALLBACK WindowProc(HWND...
用户80404320的头像-C佳家高级会员用户804043202个月前
03514
WindowsAPI-控件:Edit-C佳家

WindowsAPI-控件:Edit

使用WindowsAPI,创建Edit控件:#include <windows.h> // 全局声明 HINSTANCE hInst; LPCWSTR szWindowClass = L'win32app'; LPCWSTR szTitle = L'Win32 编辑控件示例'; // 此代码模块中...
用户80404320的头像-C佳家高级会员用户804043202个月前
03311
WindowsAPI-控件:GroupBox-C佳家

WindowsAPI-控件:GroupBox

使用WindowsAPI,创建GroupBox:#include <windows.h> #include <commctrl.h> #pragma comment(lib, 'comctl32.lib') #define ID_GROUPBOX 101 #define ID_BUTTON 102 LRESULT CALL...
用户80404320的头像-C佳家高级会员用户804043202个月前
0335
WindowsAPI-控件:TrackBar-C佳家

WindowsAPI-控件:TrackBar

使用WindowsAPI,创建TrackBar控件:#include <windows.h> #include <commctrl.h> #include <stdio.h> #pragma comment(lib, 'comctl32.lib') #define ID_TRACKBAR 101 #defi...
用户80404320的头像-C佳家高级会员用户804043202个月前
03215
WindowsAPI-控件:Tooltips_class32-C佳家

WindowsAPI-控件:Tooltips_class32

使用WindowsAPI,创建Tooltips控件:#include <windows.h> #include <commctrl.h> // Include the common controls #pragma comment(lib, 'comctl32.lib') #pragma comment(linker,...
用户80404320的头像-C佳家高级会员用户804043202个月前
0325