摘要: 例一 : 1 #include <stdio.h> 2 #include <string.h> 3 4 struct Student { 5 int sid ; 6 char name[200] ; 7 int age ; 8 }; 9 10 void f(struct Student *p);11 void g(struct Student *p);12 void h(struct Student stu);13 14 int main()15 {16 struct Student stu ;17 18 f(&stu);19 g(&stu);20 h( 阅读全文
posted @ 2011-08-13 12:57 MATRIX | yan 阅读(4090) 评论(1) 推荐(0) 编辑