長度為0的數組在GNU C是可以使用的,在定義一個變長對象的結構體是非常有用的。
請看下例。
struct line {
int length;
char contents[0];
};
struct line *thisline = (struct line *)
malloc (sizeof (struct line) + this_length);
thisline->length = this_length;
顯然這樣的代碼要比下面的定義節省空間
struct line {
int length;
char *contents;
};
struct line {
int length;
char contents[1];
};
本文來自:  ( ) 詳細出處參考:http:// /show.asp?id=686
*