gpt4 book ai didi

c - 为什么 strcpy 上没有段错误?

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

<分区>

Possible Duplicate:
Undefined, unspecified and implementation-defined behavior

这应该是段错误。为什么不呢。

    #include <string.h>
#include <stdio.h>

char str1[] = "Sample string. Sample string. Sample string. Sample string. Sample string. ";
char str2[2];

int main ()
{
strcpy (str2,str1);
printf("%s\n", str2);
return 0;
}

我正在使用 gcc 4.4.3 版和以下命令:

    gcc -std=c99 testString.c -o test

我还尝试将优化设置为 o (-O0)。

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