为什么这段代码会导致运行时错误?

发布于 2024-08-18 12:39:56 字数 240 浏览 7 评论 0原文

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

int main()
{
  char *a = "Hello ";
  const char *b = "World";

  printf("%s", strcat(a, b));
  system("PAUSE");

  return EXIT_SUCCESS;
}
#include <stdio.h>
#include <stdlib.h>
#include <string.h>

int main()
{
  char *a = "Hello ";
  const char *b = "World";

  printf("%s", strcat(a, b));
  system("PAUSE");

  return EXIT_SUCCESS;
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

寄人书 2024-08-25 12:39:56

因为您正在将数据写入不属于您的内存位置。

事实上,当运行 strcat 时,您将字符串 b 的字符附加在字符串 a 的字符后面。但你还没有声明字符串 a 之后的内存。

Because you are writing data at a memory location that you do not own.

Indeed, when running strcat, you are appending the characters of string b right after the characters of string a. But you haven't claimed for the memory after the string a.

逐鹿 2024-08-25 12:39:56

当您将 b 连接到 a 时,您正在写入未分配的内存,

When you are concatenating b to a you are writing into memory you didn't allocate,

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文