摘要: #include <stdio.h>#include <malloc.h>struct S{ int n; int arr[0];//未知大小-柔性数组成员-数组的大小是可以调整的};int main(){ struct S* ps = (struct S*)malloc(sizeof(struct 阅读全文
posted @ 2022-05-10 15:13 藏进夜里躲在光下 阅读(46) 评论(0) 推荐(0)