C語言練習 做業09(2018.12.6)

1.題目:建立單鏈表並賦值,要求遍歷能輸出1~9node #include <stdio.h> #include <stdlib.h> struct node { int num; struct node * next; }; typedef struct node Node; typedef struct node * Link; void create_link(Lin
相關文章
相關標籤/搜索