You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
254 B
8 lines
254 B
6 years ago
|
void store_account(FILE*fp)
|
||
|
{
|
||
|
int i = 0;
|
||
|
for(i = 0;i<cur_account-1;i++)
|
||
|
fprintf(fp,"%d %d %s %.2f\n",
|
||
|
accountcollection[i].account,accountcollection[i].key,accountcollection[i].name,accountcollection[i].balance);
|
||
|
}
|