This program is similar to previous assignment. That is, you will have all of the requirements, including data error checking on all inputs.

Your program is to behave in the exact same manner as previous assignment, however how you structure your code is a different story.

Now we will use functions.

Recall Previous Programming Assignment:

Write a C program that allows the user to make some simple banking transactions. The program should first prompt the user to enter the current balance of his/her bank account (in dollars and cents, not less than zero). The program should then prompt the user to enter the number of withdrawals to make, and then the number of deposits to make. For this assignment, let's set a maximum of 5 deposits and 5 withdrawals (etc.)

Here is the change for this program:

There should be at least two non-trivial functions in the program. (Non-trivial means that the function does more than simply print a line of text.)

Here are some examples of what you might want to use for your functions:

Input functions:

  • Obtain opening (current) balance.
  • Obtain number the number of deposits.
  • Obtain number of withdrawals.
  • Obtain deposit amounts.
  • Obtain withdrawal amounts.

Output functions:

  • Display closing balance and associated message.
  • Display message based on closing balance.
  • Display bank record.

Hints: Your code from previous assignment does not need to be modified too much to solve this problem. The algorithm is the same. Outputting the contents of the arrays in "record form" is pretty straightforward, and should be done in a loop. (This could be a good place for a function.)

The most complicated of the above functions is the one which would display the bank record. If you decide that you want to attempt this one, I will give you a head start by providing the function header as shown here:

void (display_bank_record (float start_balance, float deposits [ ], int num_deposits, float withdrawals [ ], int num_withdrawals, float end_balance)
Academic Honesty!
It is not our intention to break the school's academic policy. Posted solutions are meant to be used as a reference and should not be submitted as is. We are not held liable for any misuse of the solutions. Please see the frequently asked questions page for further questions and inquiries.
Kindly complete the form. Please provide a valid email address and we will get back to you within 24 hours. Payment is through PayPal, Buy me a Coffee or Cryptocurrency. We are a nonprofit organization however we need funds to keep this organization operating and to be able to complete our research and development projects.