Question: **Use C and only C** Don't forget that the functions are only stubs, so please don't implement these functions! Also, don't forget the debugging implementation!
**Use C and only C**



Don't forget that the functions are only stubs, so please don't implement these functions! Also, don't forget the debugging implementation!
Your help is greatly appreciated!
Introduction of Bank Database Application [14 pt] Write a user-interface which allows the user a menu of choices for a bank database application The database contains the accountnumber (int), name (char []), and address(char []) fields for each person. For more details, see the following requirements below Menu Options Assume that the information is stored in a database which is a black box and can only be accessed by the functions, addRecord deleteRecord, which have the following prototypes printRecord, printAlLRecords and int addRecord (struct record*, int, char [ ],char []); int printRecord (struct record *, int); void printAlLRecords(struct record *); int deleteRecord(struct record **, int); Do not implement or complete the above functions. They are stubs at the moment, and will be implemented in later assignments. (if you don't know what "stub" means, go research!) The following menu choices must be available: o Add a new record in the database o Print information about a record using the accountno as the key o Print all information in the database o Delete an existing record from the database using the accountno as a key o Quit the program . You must use a while or do-while loop for the menu. For each menu option, collect the appropriate information from the user (including an account number)
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
