C语言学习18:常量
C 常量
常量是固定值,在执行期间不会改变,这些固定值,又叫做
字面量
常量可以是任何的
基本数据类型
。常量 就是常规的变量,只不过在定义后不能进行修改。
定义常量
- 使用
#define
预处理器
#define LENGTH 10
- 使用
const
关键字
const type variable = value;
- Post title:C语言学习18:常量
- Post author:张建
- Create time:2023-02-18 16:14:14
- Post link:https://redefine.ohevan.com/2023/02/18/C学习/C语言学习18:常量/
- Copyright Notice:All articles in this blog are licensed under BY-NC-SA unless stating additionally.