我的項目中只有一個名爲test.c的文件;如果我沒有定義「TRUE」,下面的代碼不能編譯。我用vc。我只是想了解這種行爲。請在這方面提出一些看法。瞭解靜態變量的聲明/初始化C
#ifdef TRUE
static int a;
static int a = 1;
#else
static int a = 1;
static int a;
#endif
int main (void)
{
printf("%d\n", a);
return 0;
}
-----------------------
#ifdef TRUE // both ok
int a;
int a = 1;
#else // both ok
int a = 1;
int a;
#endif
int main (void)
{
printf("%d\n", a);
return 0;
}
嘗試包括錯誤消息。我們不是千里眼。 –
實際上將確切的錯誤信息粘貼到您的問題中通常是您應該做的。 –
'a'重新定義;不同的存儲類別 – caisp