摘要: 利用数组实现 1 #include<stdio.h> 2 #include<string.h> 3 4 void copy_string(char str1[],char str2[]) 5 { 6 int i = 0; 7 while(str2[i] != '\0') 8 { 9 str1[i] 阅读全文
posted @ 2020-06-24 19:26 小东哥WD 阅读(8110) 评论(0) 推荐(0) 编辑