随笔分类 -  C语言

C语言学习
摘要:1 #include 2 #include 3 4 typedef struct ListElmt_ 5 { 6 void *data; 7 struct ListElmt_ *next; 8 } ListElmt; 9 10 int main() { 11 12 13 ListElmt list; 14 //char str = '... 阅读全文
posted @ 2018-10-16 00:14 BlackSix 阅读(2681) 评论(0) 推荐(0)