知性电源

文章
6
资源
0
加入时间
3年0月21天

C语言:常量,转义字符,注释,数组

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