help me plz this one question
Task 2 - Macro Bank updates its customer's accounts at the end of each month. The bank offers two types of accounts: savings and current. Every customer must maintain a minimum balance. If a customer's current balance falls below the minimum balance, there is a penalty of 7 OMR for savings account and 12 OMR for current accounts. If the balance at the end of the month is at least the minimum balance, the account receives interest as follows: 'savings' accounts receive 5% interest on current balance current accounts with balances of up to 4000 OMR receive 2% interest on current balance; otherwise the interest 6% on current balance. Write and execute a C program using onlinegdp.com with descriptive comments explaining each line of code: 1. Reads an account number (int type), account type: s or Sfor savings, c or C for current, and minimum balance that the account number should maintain, and current balance (both of type float) of five customers. (5 marks for comments) (10 marks) 2. The program must use switch-case construct for account types (Savings and Current). Each case will call relevant function, otherwise run the program again. (5 marks for comments) (10 marks) 3. The functions will calculate final balance as per the conditions given above and return that amount back to the main function (10 marks for comments) (20 marks) 4. All the data are saved in arrays (account number, account type, minimum balance, current balance and final balance) (5 marks for comments) (10 marks) 5. Account data are retrieved from the arrays then shown in a table format as displayed in the Sample Output 1 below: (10 marks for comments) (20 marks) 6. Test the program running it five times using the following input data samples and print the output (final balance) of each as given in Sample Output 2. Paste the code and output in the report. (7.5 marks for comments) (15 marks) 1 Sample Output 1: Account No: Enter account number and account type (C or S): 123 3 Enter account minimum balance: 1500 Enter current balance: 1493 The final balance is 1486.0 Account No: 2 Enter account number and account type (C or s): 10055 C Enter account minimum balance: 3350 Enter current balance: 3338 The final balance is 3326.0 Sample Output 2: 1_035_02 Page 2 of 12 Fundamentals of Programming (COMP 10001.1) - Fall - 20- CW2 (Assignment) - ALL-QP Acct Type 5! Acct No 123 55 334 21 55 S Min. Balance 1500.0 3350.0 7450.0 2200.0 4500.0 Acct Balance 1493.0 3338.0 7822.5 2244.0 4770.0 Final Balance 1486.0 3326.0 8213.6 2288.9 5056.2