我有以下问题。我在C中分配了一个2d的动态char数组。但是,当我尝试在每一行中用唯一的字符串填充该数组时,每个条目都会覆盖之前的条目。因此,我最终得到一个数组,其中每个原始数组中只有最后一个字符串。可以提供一些见解吗?谢谢。
FILE *dictionary;
dictionary = fopen("dictionary.txt","r");
if (dictionary == NULL)
{
printf("can not open dictionary \n");
return 1;
}
char line[512];
char** hashes;
hashes = malloc(250*512);
if(!hashes){
printf("OUTOFMEMORY\n");
return;
}
i=0;
char *salt;
salt = extract_salt(shd);
char* encrypted;
while(fgets(line, sizeof(line), dictionary))
{
//hashes[i] = calculate_hash(shd, line);
encrypted = crypt(line, salt);
printf("%s\n",encrypted );
strcpy(hashes[i],encrypted );
if(i>0)
printf("%s, %s \n", hashes[i], hashes[i-1]);
i++;
}
答案 0 :(得分:0)
char** hashes;
此行声明了一个指向char的指针,而不是二维数组。
您需要将初始化更改为:
char** hashes;
hashes = malloc(250 * sizeof(*hashes));
if(!hashes){
printf("OUTOFMEMORY\n");
return;
}
for(size_t index = 0; index < 250; index++)
{
hashes[index] = malloc(512);
if(!hashes[index]){
/* memory allocation error routines */
}
}