gpt4 book ai didi

c - 为什么在一切都正确完成后我会在应用程序结束时出现段错误?

转载 作者:太空狗 更新时间:2023-10-29 16:09:47 25 4
gpt4 key购买 nike

#include <string.h>
#include <stdlib.h>
#include <stdio.h>
int main(void)
{
unsigned char *stole;
unsigned char pass[] = "m4ak47";
printf("Vnesi password: \t");
scanf("%s", stole);
if(strncmp(stole, pass, sizeof(pass)) != 0)
{
printf("wrong password!\n");
exit(0);
}
else
printf("Password correct\n");
printf("some stuf here...\n\n");
return 0;
}

这个程序运行良好,但有一个问题 - 如果密码正确,那么它确实会打印“这里有一些东西...”,但它最后也会显示段错误。为什么?

最佳答案

unsigned char *stole;
上面的语句将 stole 声明为指向 unsigned char 的指针并包含垃圾值,指向某个随机内存位置。

scanf("%s", stole);
上面的语句试图将一些字符串存储到 stole 指向的内存中,该内存正被另一个程序使用(至少没有分配给您的程序使用)。因此,当 scanf 尝试覆盖此内存时,您会得到 seg-fault

尝试如下分配内存给stole

unsigned char stole[MAX_SIZE];

unsigned char *stole = malloc((MAX_SIZE+1) * sizeof(char));
// +1 for null-terminating

Dynamic String Input

关于c - 为什么在一切都正确完成后我会在应用程序结束时出现段错误?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2566388/

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