gpt4 book ai didi

c - 我在 C 中创建 strcat 函数的代码函数有什么问题?

转载 作者:行者123 更新时间:2023-11-30 18:29:12 24 4
gpt4 key购买 nike

#include <stdio.h>
#include <stdlib.h>

char wordsum(char FW[256],char SW[256]){
int i;
int j=strlen(FW);
for (i=0;i<=strlen(SW);i++)
FW[i+j+1]=SW[i];
printf("%c",FW);
return FW;
}

int main()
{
char F[256];
char S[256];
printf("Enter the first word\n");
gets(F);
printf("Enter the Second word\n");
gets(S);
wordsum(F,S);
return 0;
}

我不知道我的 strcat 函数的代码有什么问题。希望能找到答案。

最佳答案

我假设编写该代码是为了了解有关 C 语言的更多信息。如果是这样,我可以提出一个不使用 strlen() 的替代实现吗?目的是展示该语言中一些非常好的功能。第一次理解可能有点复杂,但是 IIRC 代码可以在 K&R 的《C 编程语言》一书中找到。

我们开始:

char* mystrcat(char *dest, const char *src)
{
char *ret = dest;

while (*dest)
dest++;

while ((*dest++ = *src++))
;

return ret;
}

第一个 while 循环找到目标字符串的末尾。第二个 while 循环将源字符串附加到目标字符串。最后,我们返回一个指向原始目标缓冲区的指针。

如果函数不返回指针,它可能会更好。

void mystrcat(char *dest, const char *src)
{
while (*dest)
dest++;

while ((*dest++ = *src++))
;
}

HTH

关于c - 我在 C 中创建 strcat 函数的代码函数有什么问题?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40206150/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com