Using the supplied code, make the following modifications:
a) Place the account record into an appropriate structure, and store the accounts in an array of structures.
b) Use a function to do the account lookup. The function must use the following signature:
int acntLookup (const int acntNum); /* input = account number; output = index of account */
/* hint: what if it's not there? */
c) Add the following transaction types to the code and test data:
CH charge card transaction
FE bank fee
TR transfer (note: can be + or -)
d) Add additional functions as appropriate. There are several possibilities.
Attachment:- LAB001.zip