C语言 常量
常量的定义:
在运行过程中,其值不能改变的量称为常量。
常量的分类
整型常量 实型常量 字符常量
demo
#include <stdio.h> void main() { printf("%d %d %d \n", 12, 2, -3); //整型常量 printf("%f %f %f \n", 4.5, -2.5, 2.1578); //实型常量 printf("%c %c %c",'a','b','c');//字符常量 getchar(); }
代码效果 :
符号常量
#include <stdio.h> #define PRICE 30; void main() { int num ,total; num = 500; total = num*PRICE; printf("total=%d\n",total); getchar(); }
越努力越幸运