2016年8月10日
摘要: 1 #include"stdio.h" 2 #define MAX 100 3 typedef struct List{ 4 int length; 5 int num[MAX]; 6 }List_sequence; 7 8 //buid new List_sequence 9 int List_build(List_sequence *L,i... 阅读全文
posted @ 2016-08-10 15:53 FREEH 阅读(252) 评论(0) 推荐(0)
摘要: 这个是数组指针、指针数组、二维数组之间相互转换的代码 输出结果 阅读全文
posted @ 2016-08-10 15:37 FREEH 阅读(505) 评论(0) 推荐(0)