摘要: 1 #include 2 struct Student 3 { 4 int age; 5 int no; 6 }; 7 8 // 如果结构体作为函数参数,只是将实参结构体所有成员的值对应地赋值给了形参结构体的所有成员 9 // 修改函数内部结构体的成员不会影响外面的实参结构体1... 阅读全文
posted @ 2015-06-28 23:16 登山赏枫 阅读(284) 评论(0) 推荐(0) 编辑
摘要: 1.指向结构体的指针的定义struct Student *p;2.利用指针访问结构体的成员1> (*p).成员名称2> p->成员名称3.代码 1 #include 2 3 int main() 4 { 5 struct Student 6 { 7 int no;... 阅读全文
posted @ 2015-06-28 23:13 登山赏枫 阅读(271) 评论(0) 推荐(0) 编辑