使用指向结构体变量的指针来访问结构体变量的各个成员。
#includestruct stdtp { int num; char name[10]; float score; }; main() { struct stdtp s={1, "Wang", 89.5}, *p=&s; printf("Num:%dn", p->num); printf("Name:%sn", p->name); printf("Score:%5.1fn", p->score); }
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)