C:error:expected’)’before’;’代币

前端之家收集整理的这篇文章主要介绍了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

猜你在找的C&C++相关文章