c中的常量

本文概述

  • C中的常数列表
  • 在C中定义常量的2种方法
  • 1)C const关键字
  • 2)C
常数是在程序中无法更改的值或变量,例如:10、20,“ a”,3.4,“ c编程”等。
【c中的常量】C编程中有不同类型的常量。
C中的常数列表
常量
十进制常数10、20、450等
实数或浮点常数10.3、20.2、450.6等。
八进制常数021、033、046等
十六进制常数0x2a, 0x7b, 0xaa等
字符常数‘ a’ , ‘ b’ , ‘ x’ 等
字符串常数“ c”, “ c程序”, “ srcmini中的c”等。
在C中定义常量的2种方法有两种方法可以在C编程中定义常量。
  1. const关键字
1)C const关键字const关键字用于在C编程中定义常量。
const float PI=3.14;

现在,PI变量的值无法更改。
#include< stdio.h> int main(){ const float PI=3.14; printf("The value of PI is: %f", PI); return 0; }

输出:
The value of PI is: 3.140000

如果你尝试更改PI的值,它将导致编译时错误。
#include< stdio.h> int main(){ const float PI=3.14; PI=4.5; printf("The value of PI is: %f", PI); return 0; }

输出:
Compile Time Error: Cannot modify a const object

2)C的
请访问此处:

    推荐阅读