概述
1、常量
1.1、字面常量:
30;
3.14;
字符常量:
'w';
1.2、const 修饰的常变量
#include <stdio.h>
int main()
{
const int
a = 10;//改变变量报错
}
在C语言中,const 修饰的a本质是变量,不能被修改,有常量的属性。
const int n = 100;//本质是变量
int arr[n] = 10;
define Max 100;//define定义是标识符号
define STR 'asdf';//字符号是常量
//枚举常量
int main()
{
int num = 10;
int color = RTD;
return 0;
}
2、字符类型: ‘a’;//字符常量 char ch = 'w';
字符串: “asdf” ;//C语言中美欧字符串,由双引号引起来的一串字符为字符串
char arr[10] = "asdfg";//存储字符串用字符数组
//[10]不写的时候自动根据后面存储大小
F10 =>调试 窗口->监视
字符串的结束标志为"