程序设计语言 第3页
程序设计相关语言,如:C语言
Windows配置C++ 17/20-津桥芝士站

Windows配置C++ 17/20

1点击 MSYS2 (百度网盘)下载,或者是去到 MSYS2官网下载,并完成安装。2在安装路径下找到:msys2.exe,并打开。接着粘贴:pacman -Syu --disable-download-timeout提示输入的时候输入 Y 或者 y...
Ciallo~的头像-津桥芝士站高级会员Ciallo~36天前
0369
Ubuntu Linux下配置C/C++环境-津桥芝士站

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

环境操作系统:ubuntu-22.04.4安装1. 更新软件包列表,检查可用的软件包更新 sudo apt update2.  安装编译软件所必需的元包 build-essential。sudo apt install build-essential它们包括 GNU...
Ciallo~的头像-津桥芝士站高级会员Ciallo~32天前
0368
WindowsAPI-控件:SysTabControl32-津桥芝士站

WindowsAPI-控件:SysTabControl32

使用WindowsAPI,创建SysTabControl32控件:#include <windows.h> #include <commctrl.h> #pragma comment(lib, 'comctl32.lib') HINSTANCE hInst; HWND hwndTab; // 标签控件句柄 ...
用户80404320的头像-津桥芝士站高级会员用户8040432037天前
0407
每日C++(25年):4月21日 - 4月27日-津桥芝士站

每日C++(25年):4月21日 – 4月27日

4月21日:C++11新特性解析:alignas 和 alignof 关键字:掌控内存对齐的利器4月22日:C++14 新特性解析:自定义字面量(User-defined Literals)4月23日:C++11 新特性介绍:范围 for 循环(Ran...
Ciallo~的头像-津桥芝士站高级会员Ciallo~22天前
0487
Sublime Text配置C/C++教程-津桥芝士站

Sublime Text配置C/C++教程

1先下载(百度网盘)安装软件,或去官网安装,除了选择安装路径之外,其它一直next即可。2安装软件软件后,我们在桌面新建一个文件夹,名字无所谓,将文件夹拖动至快捷方式上,即可通过Sublime ...
每日C++(25年):6月合集-津桥芝士站

每日C++(25年):6月合集

6月1日:C++20 : std::atomic::wait 和 std::atomic::notify_one/notify_all6月2日:C++14 中的 std::make_unique函数6月3日:C++11 : std::getline 的扩展用法6月4日:C++17 标准库: std::mem...
Ciallo~的头像-津桥芝士站高级会员Ciallo~13小时前
0527
WindowsAPI-控件:SysPager与ToolbarWindow32-津桥芝士站

WindowsAPI-控件:SysPager与ToolbarWindow32

使用WindowsAPI,创建SysPager和ToolbarWindow32控件:#include <windows.h> #include <commctrl.h> #pragma comment(lib, 'comctl32.lib') #define WINDOW_CLASS_NAME L'SampleWin...
用户80404320的头像-津桥芝士站高级会员用户8040432037天前
0516
程序设计天梯赛题解-5分题 (C/C++)-津桥芝士站

程序设计天梯赛题解-5分题 (C/C++)

L1-001 Hello WorldL1-004 计算摄氏温度L1-012 计算指数L1-014 简单题L1-021 重要的话说三遍L1-024 后天L1-026 I Love GPLTL1-029 是不是太胖了L1-036 A乘以BL1-038 新世界L1-042 日期格式化L1-...
Ciallo~的头像-津桥芝士站高级会员Ciallo~6天前
01086
WindowsAPI-控件:ComboBoxEx32-津桥芝士站

WindowsAPI-控件:ComboBoxEx32

使用WindowsAPI,创建ComboBoxEx32控件:#include <windows.h> #include <commctrl.h> #pragma comment(lib, 'comctl32.lib') #define COMBOBOXEX_ID 101 HINSTANCE hInst; LRESULT...
用户80404320的头像-津桥芝士站高级会员用户8040432037天前
0235
WindowsAPI-控件:Tooltips_class32-津桥芝士站

WindowsAPI-控件:Tooltips_class32

使用WindowsAPI,创建Tooltips控件:#include <windows.h> #include <commctrl.h> // Include the common controls #pragma comment(lib, 'comctl32.lib') #pragma comment(linker,...
用户80404320的头像-津桥芝士站高级会员用户8040432037天前
0305
WindowsAPI-控件:GroupBox-津桥芝士站

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的头像-津桥芝士站高级会员用户8040432037天前
0315
Windows: 使用vcpkg安装CURL库,并集成至VS-津桥芝士站

Windows: 使用vcpkg安装CURL库,并集成至VS

安装教程:首先确保已经安装了git(命令行窗口输入git -v 不会提示出错,不会安装Git请参阅:Git安装教程):创建一个新项目,在VS2022中,并在Cpp文件中添加以下测试代码:可以看到有很多报错,...