返回前分段错误

发布于 2024-08-25 09:14:16 字数 443 浏览 4 评论 0原文

为什么以下代码在返回之前会出现分段错误:

int main()
{
char iD[20];
memset (iD, 0, 20);

char* prefix;
srand (time(NULL) );
int iPrefix = rand()%1000000;

sprintf(prefix, "%i", iPrefix);
int len = strlen(prefix);

char* staticChar = "123456789";

//set prefix into ID
memcpy(iD, prefix, len);
// append static value
memcpy(iD+len, staticChar, 20-len);

cout << "END " << endl;

return 0;
}

此时,cout 将显示,但我收到分段错误。

Why does the following code seg fault before returning:

int main()
{
char iD[20];
memset (iD, 0, 20);

char* prefix;
srand (time(NULL) );
int iPrefix = rand()%1000000;

sprintf(prefix, "%i", iPrefix);
int len = strlen(prefix);

char* staticChar = "123456789";

//set prefix into ID
memcpy(iD, prefix, len);
// append static value
memcpy(iD+len, staticChar, 20-len);

cout << "END " << endl;

return 0;
}

At the minute, the cout will display, but I get a segmentation fault.

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

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

发布评论

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

评论(3

栀梦 2024-09-01 09:14:16

在调用此函数之前,您需要为前缀分配内存:

sprintf(prefix, "%i", iPrefix);

或者您可以重构代码,例如,

snprintf(iD, sizeof(iD), "%i%s", iPrefix, staticChar);

You need to allocate memory for prefix before calling this:

sprintf(prefix, "%i", iPrefix);

or you could refactor the code e.g.,

snprintf(iD, sizeof(iD), "%i%s", iPrefix, staticChar);
离线来电— 2024-09-01 09:14:16
char* prefix;
//some code

sprintf(prefix, "%i", iPrefix);

您忘记为 prefix 分配一些内存。

char* prefix;
//some code

sprintf(prefix, "%i", iPrefix);

You forgot to assign some memory to prefix.

善良天后 2024-09-01 09:14:16

没有为前缀分配内存。
简而言之,它可以访问任何产生分段错误的内存位置。

no memory has been allocated to prefix.
so it can access any memory location which which generates segmentation fault , in simple words.

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