c语言中长度为0的数组妙用
长度为0的数组可以在GNU C中使用,第一次考试在定义变长对象的结构时非常有用。
请看下面的例子。
结构行{
int length;
字符内容[0];
};
struct line * this line =(struct line *)
malloc(sizeof(struct line)+this _ length);
this line-> length = this _ length;
Examda提示:显然,这段代码比下面的定义节省了空
struct line {
int长度;
char *内容;
};
结构行{
int length;
字符内容[1];
};
0条评论