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結構體的
相關文章
相關標籤/搜索