摘要: 示例: #include <stdio.h> #include <stdlib.h> // 定义一个包含柔性数组的结构体 struct flex_array { int size; int data[0]; }; int main() { int i; int size = 10; // 动态分配内 阅读全文
posted @ 2023-10-24 15:07 bonelee 阅读(32) 评论(0) 推荐(0)