自定义c语言字符串拷贝函数strcpy
展开全部
/*
原 串 : 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;
}
原 串 : 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;
}
推荐于2018-02-28 · 知道合伙人软件行家
关注
展开全部
#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 ;
}
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 ;
}
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
char* mystrcpy(char* dest, const char* src) {
char* tmp = dest;
while (*tmp++ = *src++)
;
return dest;
}
char* tmp = dest;
while (*tmp++ = *src++)
;
return dest;
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询