A.static B.const C.extern D.inline
A.strlen( ) B.strcpy( ) C.strcat( ) D.strcmp( )
A.空格或逗号 B.逗号或回车 C.逗号或分号 D.空格或回车
A.const double PI=3.14159; B.const int N=20; C.const char ch; D.const bool mark=true;
86 72
A.break语句不能用于循环语句和switch语句外的任何其它语句 B.switch语句中使用break语句或continue语句的作用相同 C.在循环语句中使用break语句是为了使流程跳出循环体,提前结束循环 D.在循环语句中使用continue语句是为了结束本次循环,而不是终止整个循环的执行。