常量

字面常量

const修饰的常量

#define定义的标识符常量

枚举常量

#include <stdio.h>
#define MAX 10 //#define定义的标识符常量
int main()
{
int arr[MAX] = {0};
const int num = 4; //const---常属性 num为const修饰的常变量 num为具有了常量属性的变量
3; //字面常量
return 0;
}

枚举关键字---enum

#include <stdio.h>
enum Color
{
RED,
YELLOW,
BLUE
}
int main()
{
enum Color color = Blue;
return 0;
}

字符串

​由双引号引起来的一串字符串称为字符串字面值(string Literal),简称字符串

“hello\n"

字符串的结束标志是一个\0的转义字符。在计算字符串长度的时候\0是结束标志,不算做字符串内容。