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 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…