struct A{};struct B{ ....strcut A......}结构体A在结构体B内,已知结构体A的地址,如何利用函数求得结构体B的地址?
回三楼,在不知道前面成员内容的情况下呢?(好像结构体存储的时候,有一个头地址的地址偏移量,但我不知道如何调用这个偏移量)
我测试了一下,测试程序如下:#include<stdio.h>#include<conio.h>struct node{ int i; int j;};int main(){ struct node st; clrscr(); printf("%x %x",&st,&st.i); getch();}结果是:ffd4 ffd4