口变量的使用:作强制定义,“先定义,后使用” 例2 float a.b.c s c=a%b; /*Illegal use of floating point in function main*/变量的使用:作强制定义,“先定义,后使用” 例1 int student; /* 16bit */ stadent=19; /*Undefined symbol ‘stadent’ in function main*/ 例2 float a,b,c; c=a%b; /*Illegal use of floating point in function main*/