16

这似乎是最简单的代码,但我不知道为什么它不会编译:

    switch(choice) {
        case 0:
            printf("%d", LOOP_LIMIT); /* this line gives the error */
            break;
        case 1:

当我注释掉它编译好的行

4

1 回答 1

51

你的代码是这样的:

#define LOOP_LIMIT 10;
                     ^
                    Remove this semicolon.
于 2013-03-05T18:03:15.827 回答