我有以下代码:
#define MAXSAMPLES 1024
typedef int sample_t;
typedef sample_t sub_band_t[MAXSAMPLES][MAXSAMPLES];
void blah(sample_t a[][MAXSAMPLES], int u0, int v0, int u1, int v1) {
. . . .
}
int main(int argc, char *argv[]) {
sub_band_t in_data;
int k =0;
if (argc < 2) {
printf("\nInput filename required\n");
return 0;
}
FILE *input_file = fopen(argv[1], "r");
char del = '\0';
int i = 0, j = 0;
int cols = 0;
sample_t x;
while (! feof(input_file)) {
if (fscanf(input_file, "%d%c", &x, &del) != 2) {
i--;
break;
}
in_data[i][j] = x;
if ( del == '\n') {
i++;
j =0;
continue;
}
j++;
cols = j > cols ? j : cols;
x = 0;
}
blah(in_data, 0, 0, i, cols);
}
当我使用具有 10*10 整数的输入文件运行此程序时,我blah
在 main 中的函数调用中遇到分段错误。我也无法使用 gdb 收集有关分段错误的任何信息,它只是说:
0x0000000000400928 in blah (a=Cannot access memory at address 0x7ffffdbfe198) at blah.c
我在这里做错了什么?任何帮助将不胜感激。