动态数组的C值错误

时间:2018-06-04 22:38:39

标签: c file dynamic

基本上在这段代码中我将内容从txt文件保存到动态数组(直到那时都很好),但是当我尝试重新分配内存并添加更多结构时,中间的某些值出错了,总是相同的 这是我用来保存到动态数组的代码

#include <stdio.h>
#include <stdlib.h>
#include <conio.h>
#include <string.h>
#include "header.h"

int iniF(guitarra *vg,int *tamvg)
{
int ch=0, i;

FILE *g;

g = fopen("guitarras.txt", "r"); // abrir ficheiro

if(g == NULL)
{
    printf("Erro ao abrir ficheiro %s", "guitarras.txt");
}

while(!feof(g)) //check how many lines the file have
{
    ch = fgetc(g);
    if(ch == '\n')
    {
        (*tamvg)++;
    }
}

fseek(g, 0, SEEK_SET);

vg = malloc(*tamvg * sizeof(guitarra));

for(i=0; i<*tamvg; i++)
{
    fscanf(g, ("%d %f %f %d %s"), &vg[i].id, &vg[i].pdia, &vg[i].valor, &vg[i].estado, &vg[i].nome );
}

fclose(g);
return vg;
}

这将重新分配

#include <stdio.h>
#include <stdlib.h>
#include "header.h"

 int addguit(guitarra *vg, int *tamvg)
{

int stop=0;


do
{
    vg = realloc(vg, sizeof(guitarra)); //allocating one size of struct guitarra
    printf("Id: ");
    scanf("%d", &vg[*tamvg].id);
    printf("Preco por dia: ");
    scanf("%f", &vg[*tamvg].pdia);
    printf("Valor: ");
    scanf("%f", &vg[*tamvg].valor);
    printf("Estado: ");
    scanf("%d", &vg[*tamvg].estado);
    printf("Nome: ");
    scanf("%s", &vg[*tamvg].nome);
    printf("Deseja adicionar mais guitarras ao stock? Sim[1] Nao[0]: "); //asking if wants to allocate one more
    scanf("%d", &stop);
    (*tamvg)++;
}
while(stop==1);

return vg;
}

价值观很简单&#34; 1 1 1 1 a&#34 ;; &#34; 2 2 2 2 b&#34;,依此类推,你明白了。

下面是我正在谈论的打印屏幕

ptrscr of the problem

1 个答案:

答案 0 :(得分:0)

您对realloc的调用不会将一个结构的大小添加到数组中。相反,它将其大小调整为单个结构的大小(请参阅reference for realloc)。其余数组的内存不再保留,可以由其他程序声明/修改。假设tamvg指向数组的当前长度,您应该具有类似于以下内容的内容:

vg = realloc(vg, sizeof(guitarra)*(*tamvg+1));