您好我正在尝试在C中创建一个程序,该程序应从另一个文件中读取值并将其显示在另一个文件中,但有一些例外。我得到的问题是一个分段错误,当我试图读取我的结果数组的一部分是空的时发生。我的For循环扫描每行的文件,如果这个特定文件中的一行符合我的需要,它的值应该保存在一个数组中。此数组应打印在第二个.txt文件中。我想打印一些我的数组值用于测试目的。我想这是我的数组或指针中的一个错误。
/* Die Konstanten:
* int MAX_LAENGE_STR - die maximale String Länge
* int MAX_LAENGE_ARR - die maximale Array Länge
* sind input3.c auf jeweils 255 und 100 definiert
*/
int main(int argc, char **argv) {
if (argc < 3) {
printf("Aufruf: %s <anzahl> <bundesland>\n", argv[0]);
printf("Beispiel: %s 100 Bayern\n", argv[0]);
printf("Klein-/Großschreibung beachten!\n");
exit(1);
}
int anzahl = atoi(argv[1]);
char *bundesland = argv[2];
// Statisch allokierter Speicher
char staedte[MAX_LAENGE_ARR][MAX_LAENGE_STR];
char laender[MAX_LAENGE_ARR][MAX_LAENGE_STR];
int bewohner[MAX_LAENGE_ARR];
int len = read_file("staedte.csv", staedte, laender, bewohner);
// Hier implementieren
int j;
char** result = (char *) malloc (MAX_LAENGE_ARR * sizeof(char));
if (result == NULL) {
perror("malloc failed while allocating memory");
exit(1);
}
for (int i = 0; i < len; i++) {
if (strcmp(bundesland, laender[i]) == 0 && *bewohner > anzahl) {
result[i] = malloc(MAX_LAENGE_STR * sizeof(char));
if (result == NULL) {
perror("malloc failed while allocating memory");
exit(1);
}
snprintf(result[i], MAX_LAENGE_ARR, "Die Stadt %s hat %d Einwohner.", staedte[i], bewohner[i]);
//printf("%s\n", result[i]);
}
}
printf("%s", result[0]);
// Mithilfe von write_file(...) soll das Ergebnis in die "resultat.txt"
// geschrieben werden.
write_file(result, len);
// Dynamisch allozierter Speicher muss hier freigegeben werden.
}
答案 0 :(得分:1)
您正在错误地分配给result
。您正在分配MAX_LAENGE_ARR*sizeof(char)
个字节。您需要分配MAX_LAENGE_ARR*sizeof(char *)
个字节。您还将malloc
的返回值转换为错误的类型。如果在编译时出现警告,则编译器应该已捕获此错误。但是,您不需要在Do I cast the result of malloc?
malloc
的返回值
char** result = malloc (MAX_LAENGE_ARR * sizeof(*result));
此外,我认为您需要将MAX_LAENGE_ARR
替换为以下行中的MAX_LAENGE_STR
:
snprintf(result[i], MAX_LAENGE_ARR, "Die Stadt %s hat %d Einwohner.", staedte[i], bewohner[i]);