摘要: 1.结构体保存到文本 1 #include 2 #include 3 #include 4 #define max 3 5 6 typedef struct student{ 7 char name[10]; //最好用数组,方便,用指针到时写入到文本不好操作 8 int ag... 阅读全文
posted @ 2014-12-22 12:37 悲惨的大爷 阅读(609) 评论(0) 推荐(0)
摘要: 1 #include 2 #include 3 #include 4 #define max 10 5 #define min 2 6 7 void main(int argc,char *argv[]) 8 { 9 char *content;10 int longCon... 阅读全文
posted @ 2014-12-22 12:29 悲惨的大爷 阅读(240) 评论(0) 推荐(0)