一:typedef struct S1
{
}S1;
這肯定編譯過不了!
二:typedef struct S2
{
int b;
int c;
}S2;
在main 輸出 sizeof(S2) 輸出結果是8
三:typedef struct S3
{
int b;
int c;
char * p;
}S3;
sizeof(S3) **輸出 12 **
四:typedef struct S4
{
int b;
int c;
char s[0];
}S4;
這時候 sizeof(S4)為什麼是8? 而不是12;
http://blog.csdn.net/maopig/article/details/7243646
data是一個數組名;該數組沒有元素;該數組的真實地址緊隨結構體Info之後;這種聲明方法可以巧妙的實現C語言裡的數組擴展。