Question
what is current capability of our banking system program / what we achived so far Program can add accounts and their details. It can store
what is current capability of our banking system program / what we achived so far
- Program can add accounts and their details. It can store all the informaiton in binary format.
- It can perform transactions and print the net balance for the selected customer. And also inform about the account status.
- It can search the any customer based on their customer
I want to create function which will assign the random name, random account number of 6 digit, random adress ,...so oon. basically instead of asking the details of customer. The random function will create random details. But account ID is not random, the account ID will be in acesending order starting with 1 and going up to total number of customer. Because we serach customer from his accouont ID. In simple words, when we run this random function for 100 customer, the first customer should have account ID 1 and last should have 100. So it is pretty ordered In C langauge
I have the code already but I can't paste it because it's too long, please check the link below.
The code that i am attaching has already this function.
void input(); // Input the data of customer
void writefile(); // Write the data to file
void print_all(); // Print the data of custoomer
void add_accounts(); // add data of customer a
void search_customer(); // Search data of customer in the stored file
void last_transactions(); //print the last transaction
void print_balance(); // Print the balance of customer
void make_transaction(); // Add or remove money to account
void check_account_status(int n); // Check the account status if it has enough money
https://wutwaw.sharepoint.com/sites/ComputerScience1-LabE2/_layouts/15/embed.aspx?uniqueId=e6c876ce-6a72-4e0b-85f1-9e4729b12f18&access_token=eyJ0eXAiOiJKV1QiLCJhbGciOiJub25lIn0.eyJhdWQiOiIwMDAwMDAwMy0wMDAwLTBmZjEtY2UwMC0wMDAwMDAwMDAwMDAvd3V0d2F3LnNoYXJlcG9pbnQuY29tQDNiNTAyMjljLWNkNzgtNDU4OC05YmNmLTk3Yjc2MjllMmYwZiIsImlzcyI6IjAwMDAwMDAzLTAwMDAtMGZmMS1jZTAwLTAwMDAwMDAwMDAwMCIsIm5iZiI6IjE2MTA2NTI5MzkiLCJleHAiOiIxNjEwNjUzMjM5IiwiZW5kcG9pbnR1cmwiOiJzZFVkS3Z4dUpSVTE3cGtmV0pFVTRWVk4vNWgwVkpJVktFVHpqazRKMzNNPSIsImVuZHBvaW50dXJsTGVuZ3RoIjoiMTI3IiwiaXNsb29wYmFjayI6IlRydWUiLCJjaWQiOiJOelZtTkRsaVpHRXRZV0l3WXkwME1UWXpMV0U0T1dNdFpqZzNOV05sWVdNeU4yWXoiLCJ2ZXIiOiJoYXNoZWRwcm9vZnRva2VuIiwic2l0ZWlkIjoiTkRWaE5EQXdNbUV0WXpFMFlpMDBZbVU1TFRobFlUQXRPVGswWXprMFpXVmxNVEE1IiwiYXBwX2Rpc3BsYXluYW1lIjoiTWljcm9zb2Z0IFRlYW1zIiwiZ2l2ZW5fbmFtZSI6IkFiZHVsbGFoIiwiZmFtaWx5X25hbWUiOiJBbC1BbW9kaSIsImFjIjoibHxtfGgiLCJhcHBpZCI6IjFmZWM4ZTc4LWJjZTQtNGFhZi1hYjFiLTU0NTFjYzM4NzI2NCIsInRpZCI6IjNiNTAyMjljLWNkNzgtNDU4OC05YmNmLTk3Yjc2MjllMmYwZiIsInVwbiI6IjAxMTU1ODA1QHB3LmVkdS5wbCIsInB1aWQiOiIxMDAzMjAwMDc5QUM4MEE4IiwiY2FjaGVrZXkiOiIwaC5mfG1lbWJlcnNoaXB8MTAwMzIwMDA3OWFjODBhOEBsaXZlLmNvbSIsInNjcCI6ImFsbGZpbGVzLndyaXRlIGFsbHNpdGVzLndyaXRlIiwidHQiOiIyIiwidXNlUGVyc2lzdGVudENvb2tpZSI6bnVsbH0.RW1OdzB4QzJPSXp3UHdmaFl4Y05JOWhWT3JQK0ltK2lIMU1nK0JQLy9pMD0
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started