gpt4 book ai didi

c - strcpy () 无法正常工作

转载 作者:太空宇宙 更新时间:2023-11-04 00:21:25 26 4
gpt4 key购买 nike

我目前正在编写一个程序,在该程序中我陷入了 strcpy() 函数的另一种行为。这是它的简短演示...

我回答了以下问题:Strip first and last character from C string

//This program checks whether strcpy() is needed or not after doing the modification in the string 
#include <stdio.h>
#include <string.h>

int main()
{
char mystr[] = "Nmy stringP";
char *p = mystr ;
p++;

p[strlen(p)-1] = '\0';
strcpy(mystr,p);
printf("p : %s mystr: %s\n",p,mystr);

}

输出:-

p : y strnng mystr: my strnng

如果我不使用 strcpy() 函数,那么我会得到

p : my string mystr : Nmy string 

为什么会这样??

最佳答案

标准说:

7.24.2.3

If copying takes place between objects that overlap, the behavior is undefined.

您可以使用 memmove 或完全不同的方法。

关于c - strcpy () 无法正常工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15871292/

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