上机运行结果是1 2,求解释
struct har
{ int x, y; struct har *p;} h[2];
main()
{
h[0].x=1; h[0].y=2; h[1].x=3; h[1].y=4; h[0].p=h[1].p=h; printf("%d %d \n",(h[0].p)->x,(h[1].p)->y); system("pause"); return 0;
}
三叔2016-11-19 15:14:14
h == &h[0]
h[1].p == h == &h[0]
h[0].p == h[1].p == &h[0]
指向同一个地址h即&h[0],结果是显然的