#include<stdio.h>
//1、字面常量
//2、const修饰的常变量
//define 定义的标识符常量
#define MAX 666//define要定义在main函数外
//4、枚举常量
int main()
{
//1、字面常量
30;
3.14;
"abc";
'a';
//2、const修饰的常变量
const int a = 10;
//在c语言中,const修饰的a,本质是变量,但是不能被修改
const int n = 10;
int arr[n] = { 0 };
//某些环境下可以执行,但是C语言标准下n仍然属于变量,不能作为数组的大小
//4、枚举常量
enum Color {
RED,
GREEN,
BLUE
};
enum Color c=RED;
return 0;
}
评论区