摘要: int main() { struct score { char name[10]; int stu_score; }; score stu1 = { "hu",96}; score *p_stu1; p_stu1 = &stu1; score stu2[] = { { "ming",88},{"l 阅读全文
posted @ 2019-10-31 09:02 随性岁分享 阅读(222) 评论(0) 推荐(0) 编辑