为什么这段代码会导致运行时错误?
#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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
因为您正在将数据写入不属于您的内存位置。
事实上,当运行 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.
当您将 b 连接到 a 时,您正在写入未分配的内存,
When you are concatenating b to a you are writing into memory you didn't allocate,