This code crashes after scanning and printing first line from database. I really couldn't find any solution to this.
A shot of the crash:
Contents of the database:
Matthew Summers 53901523 256325 135500
Jacob Sutherland 52392302 723232.2 1200000
Michael Phelps 58238211 971000.52 653350
Aaron Gordon 59923325 325700.92 623320
Vasil Maglaperidze 59952323 189900.32 330000
Avtandil Shoshiashvili 95234322 432000.72 723023
Michael Jordan 35252372 120899.75 50000
Daniel Whiteman 85238202 178500.53 349800
James Oneal 98773235 90750.23 197050
Haytheim Russels 19326233 178250.22 221580
My code:
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#define CHAR_BUF 128
#define DATA_FILE "database.txt"
typedef struct client
{
char fname[CHAR_BUF];
char lname[CHAR_BUF];
int pnumber;
float wins;
float loses;
float ratio;
}client;
int ReadData(FILE *fp);
int main()
{
//int lines=0;
//client client[i];
FILE *fp = fopen(DATA_FILE, "r"); // opens file
if(fp==NULL) // checks if .txt file is empty
{
printf("Database is empty.");
exit(1);
}
ReadData(fp); // Calls function to read db
//lines = ReadData(fp);
//printf("Line amount: %d", lines);
}
/* This function reads data from database
* and assigns values to their variables
*/
int ReadData(FILE *fp)
{
int i=0;
client client[i];
while(!feof(fp))
{
fscanf(fp, "%s %s %d %f %f", client[i].fname, client[i].lname,
&client[i].pnumber, &client[i].wins, &client[i].loses);
printf("%s %s %d %.2f %.2f\n", client[i].fname, client[i].lname,
client[i].pnumber, client[i].wins, client[i].loses);
i++;
}
return i;
}