c에서 구조 요소의 간격띄우기 찾기 struct a { struct b { int i; float j; }x; struct c { int k; float l; }y; }z; 의 오프셋을 찾는 방법을 설명해 줄 수 있는 사람이 있습니까?int k우리가 주소를 찾을 수 있도록.int i?사용하다offsetof()시작부터 오프셋을 구하다z또는 처음부터x. offsetof()구조 부재의 간격띄우기 개요 #include size_t offsetof(type, member); offsetof()구조물 유형의 시작에서 필드 멤버의 간격띄우기를 반환합니다. 예 #include #include #include int main(void) { struct s { int i; char c; double d; char a[];..