C/C++:为什么 a[i][j] 等价于 *(*(a+i)+j) 皓子的小站 2024年11月25日 19:35 前言 如果你较熟悉前置相关知识可直接跳转 第三章。 初探:指针的 +、-、++、-- 操作 自增操作对于指针所指向地址的影响 编译以下代码 #include <bits/stdc++.h> using namespace std; const int M = 3; int main() {
Fast Methods to Convert Uppercase Letters to Lowercase in C++ 皓子的小站 2024年11月20日 16:01 此文章有中文版本/This article is available in Chinese TL;DR Version Jump to test results: Test Results Summary: Without #pragma GCC optimize, use the followin
C++ 中快速将字符串大写字母转为小写的方法 皓子的小站 2024年11月20日 12:32 此文章有英文版本/This article is available in English 太长不看版 跳转测试结果:测试结果 结论: 如果不开 optimize 使用以下代码进行转换 string strlwr_c_cr(const string& input) { return stri
Fixing docker pull image "ghcr.io..." Unauthorized error 皓子的小站 2024年11月19日 02:00 此文章有中文版本/This article is available in Chinese Phenomenon Solution Everything went smoothly during the initial build, but when I started writing a tuto
Fixing github action push to ghcr '403 Forbidden' error 皓子的小站 2024年11月19日 02:00 此文章有中文版本/This article is available in Chinese Phenomenon The GitHub Action workflow setup looks like this: When running it, the following error occurs