Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
720 views
in Technique[技术] by (71.8m points)

c - Weird compilation error in Visual Studio 2008

I have a problem compiling the following code:

#include <stdio.h>
#include <limits.h>
int main () {
    printf("short: [%d,%d]
",SHRT_MIN,SHRT_MAX);
    printf("int: [%d, %d]
",INT_MIN, INT_MAX);
    printf("long: [%d, %d]
",LONG_MIN,LONG_MAX);
    int aa=017;
    printf("%d
",aa);
    return 0;
}

Error message is:

1>c:icex1ex2ex2.c(12) : error C2143: syntax error : missing ';' before 'type'
1>c:icex1ex2ex2.c(13) : error C2065: 'aa' : undeclared identifier

However, compilation for this is fine:

    #include <stdio.h>
    #include <limits.h>
    int main () {
        int aa=017;
        printf("short: [%d,%d]
",SHRT_MIN,SHRT_MAX);
        printf("int: [%d, %d]
",INT_MIN, INT_MAX);
        printf("long: [%d, %d]
",LONG_MIN,LONG_MAX);
        printf("%d
",aa);
        return 0;
    }

Any idea what the issue is?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

In C, variables previously had to be declared at the top of the scope, before any code is executed. This isn't the case in C99 (which Visual Studio doesn't implement.)


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

1.4m articles

1.4m replys

5 comments

56.8k users

...