变量常量表达式算式函数区别
问题描述:
变量常量表达式算式函数区别
各简单举例一个
答
常量:2-1+3;
变量:
int a,b=0;
a=2+b;
函数:
int max(int,int);
int a,b=1,c=2;
a=6+max(b,c);