你能指出我做错了什么吗?
我正在尝试编写一些代码,这些代码将从文本文件中读取数据并将这些数据保存到指向结构的指针数组中。我不使用任何全局标识符是至关重要的。
这是我写的,但每次函数nactiProdukty
( readProductsfromFile
) 结束时都会出现错误:First-chance exception at 0x73006500 in ConsoleApplication3.exe: 0xC0000005: Access violation executing location 0x73006500
. 但是从文件中读取似乎工作正常。
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <time.h>
typedef struct produkt {
char jmeno[20];
int mnozstvi;
int cena;
} tProdukt;
int SpoctiProdukty();
int Generuj(int min, int max);
void nactiProdukty(tProdukt **pole);
void main(){
tProdukt **pole=NULL;
int i;
srand(time(NULL));
nactiProdukty(pole);
printf("test");
scanf("%s");
}
int SpoctiProdukty(){
FILE *data=fopen("data.txt","r");
int count=0;
while(fscanf(data,"%s %d") != EOF){
count++;
}
fclose(data);
return count;
}
int Generuj(int min, int max){
return (rand()%(max-min)+min);
}
void nactiProdukty(tProdukt **pole){
FILE *data=fopen("data.txt","r");
int temp;
int i;
char temps[20];
int pocet=SpoctiProdukty();
//tProdukt **pole;
pole=(tProdukt**)malloc(sizeof(tProdukt*)*pocet);
for (i = 0; i < pocet; i++) {
pole[i]=(tProdukt*)malloc(sizeof(tProdukt));
}
for (i = 0; i < pocet; i++) {
fscanf(data,"%s %d",temps,&temp);
strcpy((*pole[i]).jmeno,temps);
(*pole[i]).cena=temp;
(*pole[i]).mnozstvi=Generuj(10,150);
}
}