尝试将用户输入分配给结构中的元素但不断收到分段错误 11
Posted
技术标签:
【中文标题】尝试将用户输入分配给结构中的元素但不断收到分段错误 11【英文标题】:Trying to assign user input to elements in a struct but keep getting segmentation-fault 11 【发布时间】:2021-05-29 15:18:41 【问题描述】:struct Book
char *title;
char *authors;
unsigned int year;
unsigned int copies;
;
void book_to_add()
struct Book book;
struct Book *ptrbook = (struct Book*) malloc(sizeof(struct Book));
printf("Book you would like to add: \n");
scanf("%[^\n]", book.title);
printf("Author of Book: \n");
scanf("%[^\n]", book.authors);
printf("Year book was published: \n");
scanf("%u", &book.year);
printf("number of copies: \n ");
scanf("%u", &book.copies);
add_book(book);
free(ptrbook);
我对编程很陌生,我不确定我应该怎么做才能解决这个问题,我知道这可能与结构中的指针元素有关。
【问题讨论】:
在scanf()
中的%
之前添加一个空格,以使用可选的前导空格:scanf(" %[...]", ...)
【参考方案1】:
title
和 authors
是未初始化的指针,如果需要,您需要为它们分配内存(ie 让它们指向某个有效的内存位置)在那里存储任何东西,例如:
book.authors = malloc(100);
book.authors = malloc(100);
对于能够存储 99 个字符的缓冲区 + 空终止符 '\0'
。
请注意,请确保在 scanf
中使用大小分隔符,否则可能会导致缓冲区溢出,例如:
scanf(" %99[^\n]", book.title);
scanf(" %99[^\n]", book.authors);
用于 100 个字符的缓冲区。
【讨论】:
以上是关于尝试将用户输入分配给结构中的元素但不断收到分段错误 11的主要内容,如果未能解决你的问题,请参考以下文章