gpt4 book ai didi

c - 使用 strcpy 的段错误

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

我在使用 strcpy 复制带有分配内存的双指针内的字符串数组时遇到了一些麻烦,但我不明白为什么即使我之前分配了内存也会出现段错误。这是代码:

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

typedef struct Students {
int q_exams;
char **done_exams;


}Students;


int main() {

Students a;
int i;
char support[30];

printf("how many exams have you done ?\n");
scanf("%d",&(a.q_exams));
a.done_exams=malloc(sizeof(char*)*a.q_exams);
if(a.done_exams==NULL)
{
printf("out of memory\n");
return 0;
}
for(i=0;i<a.q_exams;i++)
{
printf("Insert the name of the exam\n");
scanf("%28s",support);
a.done_exams[i]=malloc(strlen(support)+1);
if(a.done_exams[i]==NULL)
{
printf("out of memory\n");
return 0;
}
strcpy(a.done_exams[i][0],support);
fflush(stdin);
}

return 0;
}

最佳答案

您需要将初始字符的地址传递给strcpy,或者像这样

strcpy(&a.done_exams[i][0],support);
// ^
// Add an ampersand

或者类似这样:

strcpy(a.done_exams[i] , support);
// ^
// Remove the second index

目前,您的代码传递的是初始字符的*,而不是其地址。

* 该值当时也是未定义的,但这不是主要原因,因为您根本不应该传递值。

关于c - 使用 strcpy 的段错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27732293/

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