摘要: 完整复制字符串的一个简单程序 1 #include <stdio.h> 2 #include <stdlib.h> 3 #include <string.h> 4 5 char *strcpy(char *dst, const char *src) { 6 char *s = dst; 7 8 wh 阅读全文
posted @ 2023-05-13 21:20 安然春夏 阅读(18) 评论(0) 推荐(0)