摘要: 常量 --生活中不变的量 C语言中的常量分为以下几种: 字面常量 const修饰的常变量 #define定义的标识符常量 枚举常量 1 #include <stdio.h> 2 int main() 3 { 4 //字面常量 5 3; 6 100; 7 3.14; 8 9 //const修饰的常变量 阅读全文
posted @ 2022-10-31 22:35 YXLzuidiao 阅读(82) 评论(0) 推荐(0)