自定义c语言字符串拷贝函数strcpy

 我来答
xoaxa
2012-12-20 · TA获得超过8608个赞
知道大有可为答主
回答量:6415
采纳率:72%
帮助的人:3441万
展开全部
/*
原 串 : Windows Application
目标串 : Windows Application
请按任意键继续. . .
*/
#include <stdio.h>
#include <stdlib.h>
char *strcopy(char ds[], char ss[]) {
int i = 0;
while(ds[i] = ss[i]) ++i;
return ds;
}

int main() {
char s[] = "Windows Application";
char d[20];
printf("原 串 : %s\n",s);
printf("目标串 : %s\n",strcopy(d,s));
system("pause");
return 0;
}
lgao622
推荐于2018-02-28 · 知道合伙人软件行家
lgao622
知道合伙人软件行家
采纳数:1137 获赞数:6549
毕业于武汉工程大学邮电与信息工程学院通信专业,软件行业,4年工作经验。

向TA提问 私信TA
展开全部
#include <stdio.h>
char* cpystr(char *des, char *res)
{
for(int i= 0; res[i]!='\0'; i++)
des[i]= res[i];
des[i]= '\0';
return des;
}
int main (void)
{
char d[30], s[]= "12345";
cpystr(d, s);
puts(d);
return 0 ;
}
本回答被提问者和网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
bdzhangzerun
2012-12-20 · 超过28用户采纳过TA的回答
知道答主
回答量:97
采纳率:50%
帮助的人:67.3万
展开全部
char* mystrcpy(char* dest, const char* src) {
char* tmp = dest;
while (*tmp++ = *src++)
;

return dest;
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式