C语言柔性数组详解

#include<stdio.h> typedef struct _SoftArray{     int len;     int array[]; }SoftArray; int main() {     int len = 10;     printf("The struct's size is %d\n",sizeof(SoftArray)); } 我们可以看出,_SoftArray结构体的
相关文章
相关标签/搜索