#includemain(){struct abc{int a;};struct abc *p,b; /*p是空指针,你在结构体中 继续定义 一个b ,p指向b就ok*/p=&b;p->a=1;printf("%d",p->a);getchar();}