• 编译时替换 (compile-time substitution)
  • 末尾不用加 ;
  1. #define TAXRATE 0.015

image.png

  • c_k_ 表示常量 (不常用)

image.png
image.png

其它例子:

  1. #define BEEP '\a'
  2. #define TEE 'T'
  3. #define ESC '\033'
  4. #define OOPS "Now you have done it!"

4.3.1 const 限定符

C90 新增 const 关键字, 只读用

  1. const int MONTHS = 12;

4.3.2 明示常量

  • C 库中用 #define 定义的东西
  • 在 C 中, 用 const 声明的是变量

image.png

image.png

使用例子, 注意, 编译器要支持 C99 才能识别 LLONG_MIN:

image.png