Task: Create a simple bank account simulation:
Create a new project named "Accounts" and a new source file named "accounts.c". Enter the following skeleton program. The main() function has been implemented for you. There are four functions you will need to implement to complete the lab.
Build and test the program. The program is designed so that account numbers are five-digit integers starting with "2." Fix any compile-time syntax errors, and test that the program menu logic is working properly.
Create the code for the functions findAccount(), printAccountBalance(), deposit(), and withdraw(). Build and test the program. Test the program using a valid account number (one which appears in the array) as well as an invalid account number. Be sure to use invalid data in each response, as well as valid data, to verify that your program handles the input validation properly.