Write a program which contains the following structure: the structure stores data about clients of a bank with the data members firstname, family name, bank account number (just an integer), and the balance of the account. In main declare a structure type array called clients of size 10. Read in the data into the array from a file called clients.dat. Check if the file opening was successful or not. Write a function which gets one client and writes out its data in a nice formatted way like Firstname: John Family name: Lennon Account number: 463762555637 Account balance: 650 Call this function to print out data of all the clients. Then write a function which gets one client and increases it account balance by 100. Call this function to increase the balance of all those clients whose balance is below 500.
Write a program which contains the following structure: the structure stores data about clients of a bank with the data members firstname, family name, bank account number (just an integer), and the balance of the account.
In main declare a structure type array called clients of size 10. Read in the data into the array from a file called clients.dat. Check if the file opening was successful or not.
Write a function which gets one client and writes out its data in a nice formatted way like
Firstname: John
Family name: Lennon
Account number: 463762555637
Account balance: 650
Call this function to print out data of all the clients.
Then write a function which gets one client and increases it account balance by 100. Call this function to increase the balance of all those clients whose balance is below 500.
Step by step
Solved in 3 steps with 2 images