2006年12月6日 星期三

__attribute 的妙用 [Linux]

struct test {
    int t;
    char t1;
};
sizeof(struct test) = 8;
 
 
 
 
struct test {
    int t;
    char t1;
}__attribute((packed));
 
sizeof(struct test) = 5;
 
sizeof 果然是在 compiler time 時運作的, 嘿嘿
 

沒有留言:

張貼留言