前端之家收集整理的这篇文章主要介绍了
C:error:expected’)’before’;’代币,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
这似乎是最简单的
代码,但我不知道为什么它不会编译:
switch(choice) {
case 0:
printf("%d",LOOP_LIMIT); /* this line gives the error */
break;
case 1:
当我注释掉它的线,它编译好
你的
代码有这样的:
#define LOOP_LIMIT 10;
^
Remove this semicolon.
原文链接:https://www.f2er.com/c/112360.html