#include<stdio.h>
int main()
{
int age = 10;
//变量的命名,必须有意义例如int age
//变量名不可以是关键字,并且只能由数字字母下划线三种字符组成
//变量名的开头是能是字母或者下划线,不可以是数字
return 0;
/*关键字:{auto,break,case,char,const,continue,default,
do,double,else,enum,extern,float,for,goto,if,int,long,
register,return,short,signed,sizeof,static,struct,switch,
typedef,union,unsigned,void,volatile,while}
*/
}
评论区