我已经在这里工作了几个小时,进展甚微。我需要知道为什么我的程序在调用scanf()时会崩溃。错误消息:“分段错误;核心转储”让我相信我没有正确地为动态数组分配内存。如果是这种情况,有人可以告诉我如何正确分配内存以向阵列添加一个结构吗?
#include <stdio.h>
#include <stdlib.h>
/*
*
*/
enum Subject{
SER = 0, EGR = 1, CSE = 2, EEE = 3
};
struct Course{
enum Subject sub;
int number;
char instructor_name[1024];
int credit_hours;
}*course_collection;
int total_courses = 0;
int total_credits = 0;
void course_insert();
void resizeArray();
int main(int argc, char** argv) {
int choice = 0;
while(choice != 4){
printf("Welcome to ASU, please choose from the menu"
"choices.\n\n");
printf("_____________________________________________\n\n");
printf("Menu:\n 1.Add a class\n 2. Remove a class\n"
" 3.Show classes\n 4.Quit");
printf("\n\nTotal credit hours: %d\n\n", total_credits);
printf("\n\n_________________________________________");
scanf("%d", &choice);
if(choice == 1){
resize_array(total_courses);
course_insert();
}
else if(choice == 3)
print_courses();
}
return (EXIT_SUCCESS);
}
void resize_array(int total_courses) {
course_collection = malloc(total_courses +
sizeof(course_collection));
}
void print_courses() {
int i;
for(int i = 0; i < total_courses; i++){
printf("\nInstructor: %s\n\n",
course_collection[i].instructor_name);
}
}
void course_insert(){
printf("\n\nEnter the instructor's name\n\n");
scanf("%s" , course_collection[total_courses].instructor_name);
total_courses++;
}
//will crash just after scanf();
//must press 1 & enter for correct output
输入一些教师名称后,我从菜单中选择第三个选项,它应该遍历数组并打印每个教师的名字,但我得到的只是空白行和我估算的最后一个教师名称。
UPDATE @ user3545894我试过这个并且看起来工作正常但我仍然遇到输出不正确的问题。我应该能够遍历数组并在每个下标中打印字符串。
答案 0 :(得分:2)
问题来自 malloc(total_courses + sizeof(course_collection))
您只分配course_collection的指针数组。 您需要为整个 struct Course
分配内存它应该是 malloc(total_courses * sizeof(struct Course))
答案 1 :(得分:0)
使用此malloc(total_courses + sizeof(struct Course))而不是malloc(total_courses + sizeof(course_collection))
由于内存分配导致的分段故障主要是针对数组 arr [n]我们使用它直到'0'到'n-1'{仔细观察不是'n'}