摘要:
1 /*动态链表的建立与输出*/ 2 #include 3 #include 4 #define N sizeof(struct Student) 5 struct Student 6 { 7 int num; 8 float score; 9 struct Student *next;10 };11 void print(struct Student *head);12 struct Student *creat(void);13 int main(void)14 {15 struct Student *pt;16 pt=creat();17 ... 阅读全文
posted @ 2013-11-22 00:16
ASMLearner
阅读(461)
评论(0)
推荐(0)
浙公网安备 33010602011771号