VC编译C语言出现syntax error : missing ')' before ';'错误
VC编译C语言出现syntax error : missing ')' before ';'错误
日期:2015-01-16 11:33:57 人气:1
for(; count>0 ; --count;)
这里多了个分号,改成
for(; count>0 ; --count)
VC编译C语言出现syntax error : missing ')' before ';'错误