1. 常量:在程序运行的过程中,其值不能被改变的量称为常量
常量的分类和不同类型常量的表达:
代码:
#define PRICE 40 #include <stdio.h> void main() { int num, total; num = 10; total = num*PRICE; printf("total=%d\n", total); getchar(); }
变量
定义:
变量的命名:
变量的分类
原文地址:https://www.cnblogs.com/guangzhou11/p/8215672.html
时间: 2024-10-03 16:15:31