這兩個是一樣的嗎?struct EMPLOYEE {...} em1,em2;或者struct EMPLOYEE {...};
struct EMPLOYEE {
...
};
int main (void)
{
//Local Declaration
struct EMPLOYEE em1;
struct EMPLOYEE em2;
...
return 0;
}
和
struct EMPLOYEE {
...
}em1,em2;
如果我用的是後一種情況下,是不需要我,我在前者的情況下沒有宣佈這些結構中的主要功能?
在後一種情況下,這兩個是全局變量。 – 2013-03-21 01:10:12
而在第一種情況下,他們是當地人 – Skeen 2013-03-21 01:11:06
總結起來非常感謝! – 2013-03-21 01:12:10