摘要: #include <stdio.h> #include <stdlib.h> #define MaxSize 100 typedef struct { char data[MaxSize]; //存储数据的数组 int len; //字符串长度 }SqString; void StrAssign(S 阅读全文
posted @ 2019-05-16 19:18 李振业 阅读(369) 评论(0) 推荐(0) 编辑