欢迎来到天天文库
浏览记录
ID:50824076
大小:39.55 KB
页数:2页
时间:2020-03-15
《c语言中指向结构体的指针.docx》由会员上传分享,免费在线阅读,更多相关内容在工程资料-天天文库。
1、#include#includevoidmain(){structstd{inta;charsex;charname[20];};structstdstd1;structstd*p;p=&std1;std1.a=1;std1.sex='f';strcpy(std1.name,"Zhangsan");printf("指向结构体的指针的应用");//输出结构体重数据的三种方法printf("%d%c%s",std1.a,std1.sex,std1.name);printf("%d%c%s",p->a,p-
2、>sex,p->name);printf("%d%c%s",(*p).a,(*p).sex,(*p).name);}运行结果,如下图所示:
此文档下载收益归作者所有