摘要: #include struct student{ int num; char name[20]; float score; }; int main(void){ struct student s1={20,"bowen",89.0},*sp; //struct stduent *sp; sp=&s1; printf("%d %s %f",sp->num... 阅读全文
posted @ 2018-04-30 10:00 sunnybowen 阅读(560) 评论(0) 推荐(0) 编辑
摘要: #include struct student{ int num; char name[20]; float score; }; int main(void){ struct student s1={20,"bowen",89.0}; printf("%d %s %f",s1.num,s1.name,s1.score); } 阅读全文
posted @ 2018-04-30 09:54 sunnybowen 阅读(179) 评论(0) 推荐(0) 编辑