c 结构体最后一个成员使用长度为0数组
摘要:
变长数组,不用指针,可以只分配一次内存,释放一次内存,方便内存管理 demo.c #include <stdio.h> #include <stdlib.h> #include <string.h> struct demo { char ch1; char ch2; char str[0]; }; 阅读全文
posted @ 2020-03-01 17:58 luckygxf 阅读(528) 评论(0) 推荐(0) 编辑