摘要:
打印也是一种运算,因此是先打印出5,再-1。 阅读全文
摘要:
#include <stdio.h> int main() { int n1 = 10; // 十进制 int n2 = 0b10; // 二进制 int n3 = 017; // 八进制 int n4 = 0x1a; // 十六进制 // 以十进制的方式打印 printf("%d\n", n1); 阅读全文
摘要:
#include <stdio.h> int main() { // 练习:计算圆的面积,其半径由用户指定 float radius; // 圆的半径 printf("enter radius: "); scanf("%f", &radius); // 理解为阻塞式函数 const float PI 阅读全文
摘要:
多种方式定义常量 使用宏定义表示的常量没有数据类型。 #include <stdio.h> #define ZERO 0 #define PI 3.1415 int main() { // 1.字面常量 3.14; // 字面常量 1000; // 字面常量 // 2. #define printf 阅读全文
摘要:
1、基本数据类型 1.1 整数类型 1.2 浮点类型 1.3 字符类型 1.4 布尔类型 #include <stdio.h> #include <stdbool.h> // 使用宏定义 #define TRUE 1 #define BOOL int int main() { // 第1种处理方式 阅读全文
摘要:
一、编写 命名为xxx.c文件 #include <stdio.h> int main() { printf("hello,world!"); getchar(); 用于双击可执行文件时窗口停留不关闭 return 0; } 二、编译 使用编译器GCC进行编译,GCC是C语言的跨平台编译器,现在安装 阅读全文
摘要:
转自https://blog.csdn.net/baidu_27652997/article/details/130728645 文章目录1.gitLab之间迁移(保留提交记录和分支)2.合并多个项目为一个(保留所有提交记录)3.将项目中某个文件夹拆分出来单独使用(保留提交记录)4.分支的单文件合并 阅读全文
摘要:
转自https://blog.csdn.net/liuqiao0327/article/details/110671028?spm=1001.2101.3001.6661.1&utm_medium=distribute.pc_relevant_t0.none-task-blog-2%7Edefaul 阅读全文
摘要:
转自https://blog.csdn.net/liuqiao0327/article/details/110671028?spm=1001.2101.3001.6661.1&utm_medium=distribute.pc_relevant_t0.none-task-blog-2%7Edefaul 阅读全文
摘要:
转自https://zhuanlan.zhihu.com/p/631382940 Git 的分支功能可以让你在同一代码库中独立地开发不同的功能或修复不同的 bug,而不会影响主干分支的稳定性。以下是使用 Git 分支的一些情况: 开发新功能:如果你需要开发一个新的功能,可以在主干分支上创建一个新的分 阅读全文