I'm writing a simple banking application in c It saves the information in a file. I want to load the file each time the app runs, and add the information from the file to the struct, for this purpose, I have written two functions called "loadfile" and "allocate"
In the function "loadfile" if I un-comment the comment lines, the OS throws a "stopped working" in my face :|
Can you help me with it ? when I use (acc+i) in the "loadfile", the error shows up. Is there a syntax problem? :o thanks
typedef struct {
char name[20];
int id;
int balance;
char branch[10];
} account;
account *acc;
int allocate ( account *acc ) {
int num = 0 ;
char tempname[20],tempbranch[10];
int tempid = -1 ,tempbalance;
FILE *file;
file = fopen("D://bank.txt","r");
while ( !feof(file) ) {
fscanf(file,"%s %d %d %s ",tempname, &tempid, &tempbalance, tempbranch);
if (tempid != -1)
num++;
}
acc = ( account *) realloc ( acc, num * sizeof(account) );
fclose(file);
printf(" num in allocate function : %d",num);
return num;
}
int loadfile (account *acc) {
int num = allocate(acc);
char tempname[20],tempbranch[10];
int tempid ,tempbalance;
if ( num != 0 ) {
int i = 0 ;
FILE *file;
file = fopen("D:\\bank.txt","r+");
for ( i = 0 ; !feof(file) && i < num ; i++ ) {
fscanf(file,"%s ",tempname );
fscanf(file,"%d ",&tempid );
fscanf(file,"%d ",&tempbalance );
fscanf(file,"%s ",tempbranch );
printf("\n i is %d \n",i);
/* strcpy( ((acc+i)->name) , tempname);
(acc+i)->id = tempid;
(acc+i)->balance = tempbalance;
strcpy( ((acc+i)->branch) , tempbranch); */
}
fclose(file);
}
return num;
}
There are a lot of issues with the posted code. It is unclear how a separate allocation function is helpful, and the use of the file-scope variable
acc
is not advisable. I see no point in usingrealloc()
here, since allocation is done only once. If you do userealloc()
, you should store the result in a temporary pointer, because the function can return aNULL
pointer if there is an allocation error. This leads to a memory leak if you assign directly to the pointer that you are reallocating from. I have rewritten the code to illustrate some fixes, trying to maintain the general structure of the original code.You should check the return values of the functions that you call.
realloc()
andmalloc()
return a pointer to the allocated memory, or aNULL
pointer in the event of an allocation error. You should check this value and handle the result. Thescanf()
functions return the number of successful assignments made. You should check this value to verify that input is as expected. It is almost always a bad idea to control a loop withfeof()
, because this function relies upon the end-of-file indicator being set, and this indicator is only set when an I/O operation has failed.In the program below,
fgets()
is used to read a line of input from the file into a buffer, andsscanf()
is used to extract the input data from the buffer. In the allocation phase,EOF
or an empty line signals the end of the data. No parsing is done here, only a count of lines. For each line, space is allocated for anaccount
. Note that the code checks for errors on opening and closing the file, as well as for an allocation error.The
loadfile()
function again usesfgets()
to read a line of input intobuffer
, and then usessscanf()
to scan the buffer. Note the use of width specifiers for the strings. These are one less than the size of the arrays that they read into, to leave space for the'\0'
placed at the end of the strings bysscanf()
. Also note that in the event that fewer than 4 assignments are made, the programexit
s with an error message. If the assignments to the temporary variables were successful, theaccount
is updated with the data.There are many ways that this code could be improved (most obviously by getting rid of the global variable
acc
), but this should provide you with a good starting point.