面試寶典-預處理、const與sizeof

T1.用一個宏定義FIND求一個結構體struc裏某個變量相對struc的偏移量。 { int a; char b[20]; double ccc; } 則 : FIND(student,a); //等於0 FIND(student,b); //等於4web #define FIND(struc,e) (size_t)&(((struc*)0)->e)svg 其中(stru
相關文章
相關標籤/搜索