SlideShare a Scribd company logo
1 of 15
A MINI PROJECT
ON
BANK MANAGEMENT SYSTEM
By
J.SIDDARTHA 237R1A0425
DINESH RATHOD 237R1A0455
Bank Management System
INTRODUCTION :
The project entitled “Bank management system” is a computerized
telecommunications device that provides the customers of a financial
institution with access to financial transactions in a public space
without the need for a human clerk or bank taller (manpower).
Thousands of bank performs millions of transactions every day and
thousands of users used banking system in day to day life. As we know
that if number of users increases us need more banks and more staff it
means increasing manual work also we put more amount of money in
bank it is more risky and not much secure
Scope Of Project:
Creating new user account
Deposit Amount
Withdrawal amount
Fast cash (withdrawal)
Pin change
Maintain Reports
LITERATURE SURVEY/ RELATED WORK:
In [1], Information and communication technology (ICT) has helped to
helped to drive increasingly intense global Competition. In the world
history the most of the countries are most developed because of they
are financially very clear for how to use the high amount of money in
the developing process in own country . We also use the SOA
architecture for providing the scalable and reliable service therefor we
studied related to the SOA architecture to know how we use to
implementation process in our project using Service Oriented
Architectures (SOA
PROPOSED SYSTEM:
The proposed system is highly computerized in which the
data related to user accounts will be secured high with high
accuracy that even reduced the machine damage and human
made errors and this existing system is highly efficient to offer
best services to the customers as well as bank because it has
user friendly access that customers less time when compare
with a normal banking system. When the data is entered it will
check for its validity
Advantages:
 No need of bank employee for creation of account into
bank.
 Time saving along with quality services.
 Smooth and timely execution of reports.
 This managements can also provide the reports for every
user.
 The records like Transactions, creating accounts and PIN.
change also retrieve after wards.
Hardware And Software Specification:
Software requirement:
• Operating system:windows xp/7/8/10.
• Front end: JAVA netbeans-8.2.
• Framework: swing and AWT
• Back end: MySQL Server.
Hardware requirement:
• Processor : intel ,Dual Core or above.
• Primary memory(RAM):512 MB or above.
• Secondary memory(ROM): 40GB or above.
How it Program works:
The data to be storedis: Account number, Name, Balance in account.
Program must be menu driven with following options
 Print the Account number and name and balance of each customer.
 Withdraw money.
 Deposit money.
 Search customer.
Code:
#include <stdio.h>
#include <stdlib.h>
struct Account {
int accNumber;
char name[50];
float balance;
};
void createAccount(struct Account
*accounts, int *numAccounts) {
printf("Enter account number: ");
scanf("%d",
&accounts[*numAccounts].accNumber);
printf("Enter account holder name: ");
scanf("%s", accounts[*numAccounts].name);
printf("Enter initial balance: ");
scanf("%f", &accounts[*numAccounts].balance);
(*numAccounts)++;
printf("Account created successfully!n");
}
void displayAccount(struct Account account)
{
printf("Account Number: %dn",
account.accNumber);
printf("Account Holder: %sn", account.name);
printf("Balance: $%.2fn", account.balance);
}
void displayAllAccounts(struct Account
*accounts, int numAccounts)
{
if (numAccounts == 0) {
printf("No accounts found.n");
return;
}
printf("All Bank Accounts:n");
for (int i = 0; i < numAccounts; i++)
{
displayAccount(accounts[i]);
printf("n");
}
}
int main()
{
struct Account accounts[100];
int numAccounts = 0;
int choice;
do {
printf("nBank Management Systemn");
printf("1. Create Accountn");
printf("2. Display All Accountsn");
printf("3. Exitn");
printf("Enter your choice: ");
scanf("%d", &choice);
switch (choice) { case 1: createAccount(accounts, &numAccounts);
break;
case 2: displayAllAccounts(accounts, numAccounts);
break;
case 3:
printf("Exiting...n");
exit(0);
default:
printf("Invalid choice. Please try again.n");
}
} while (1);
return 0;
}
Conclusion:
This project is developed to nature the needs of a user in a
Banking sector by embedding all the tasks of transactions taking
Place in bank.
Future version of this software will still be much enhanced than
The current version. Thus the Management system it is developed and
Executed successfully.
THANK YOU

More Related Content

Similar to PPS.pptx this ppt is for coding your problems and to do ppt for new students for easily

Bank management system
Bank management systemBank management system
Bank management systemsumanadas37
 
Onlinebanking system.ppt
Onlinebanking system.pptOnlinebanking system.ppt
Onlinebanking system.pptMohitDhande3
 
Computer science project on Online Banking System class 12
Computer science project on Online Banking System class 12Computer science project on Online Banking System class 12
Computer science project on Online Banking System class 12OmRanjan2
 
Documentation
DocumentationDocumentation
DocumentationKalyan A
 
Software Engineering Testing & Research
Software Engineering Testing & Research Software Engineering Testing & Research
Software Engineering Testing & Research Vrushali Lanjewar
 
Artificially Intelligent Investment Risk Calculation system based on Distribu...
Artificially Intelligent Investment Risk Calculation system based on Distribu...Artificially Intelligent Investment Risk Calculation system based on Distribu...
Artificially Intelligent Investment Risk Calculation system based on Distribu...iosrjce
 
E secure transaction project ppt(Design and implementation of e-secure trans...
E secure transaction project  ppt(Design and implementation of e-secure trans...E secure transaction project  ppt(Design and implementation of e-secure trans...
E secure transaction project ppt(Design and implementation of e-secure trans...AJIT Singh
 
Document Atm machine using c language mini project.pdf
Document  Atm machine using c language mini project.pdfDocument  Atm machine using c language mini project.pdf
Document Atm machine using c language mini project.pdfNEERAJRAJPUT81
 
"Bank management system"
"Bank management system""Bank management system"
"Bank management system"vivek kct
 
Project report on (atm MAnagment system)
Project report on (atm MAnagment system)Project report on (atm MAnagment system)
Project report on (atm MAnagment system)Muhammad Umer Lari
 
Banking application & software solutions at competitive rate
Banking application & software solutions at competitive rateBanking application & software solutions at competitive rate
Banking application & software solutions at competitive rateAaron Jacobson
 
Cbsecomputersciencecclass12boardproject bankmanagmentsystem-180703065625-conv...
Cbsecomputersciencecclass12boardproject bankmanagmentsystem-180703065625-conv...Cbsecomputersciencecclass12boardproject bankmanagmentsystem-180703065625-conv...
Cbsecomputersciencecclass12boardproject bankmanagmentsystem-180703065625-conv...sriram sarwan
 

Similar to PPS.pptx this ppt is for coding your problems and to do ppt for new students for easily (20)

Bank management system
Bank management systemBank management system
Bank management system
 
Onlinebanking system.ppt
Onlinebanking system.pptOnlinebanking system.ppt
Onlinebanking system.ppt
 
Computer science project on Online Banking System class 12
Computer science project on Online Banking System class 12Computer science project on Online Banking System class 12
Computer science project on Online Banking System class 12
 
Documentation
DocumentationDocumentation
Documentation
 
Software Engineering Testing & Research
Software Engineering Testing & Research Software Engineering Testing & Research
Software Engineering Testing & Research
 
Distributed banking system using rmi project
Distributed banking system using rmi projectDistributed banking system using rmi project
Distributed banking system using rmi project
 
Atm System
Atm SystemAtm System
Atm System
 
SLPOST
SLPOSTSLPOST
SLPOST
 
Artificially Intelligent Investment Risk Calculation system based on Distribu...
Artificially Intelligent Investment Risk Calculation system based on Distribu...Artificially Intelligent Investment Risk Calculation system based on Distribu...
Artificially Intelligent Investment Risk Calculation system based on Distribu...
 
D017612529
D017612529D017612529
D017612529
 
E secure transaction project ppt(Design and implementation of e-secure trans...
E secure transaction project  ppt(Design and implementation of e-secure trans...E secure transaction project  ppt(Design and implementation of e-secure trans...
E secure transaction project ppt(Design and implementation of e-secure trans...
 
Document Atm machine using c language mini project.pdf
Document  Atm machine using c language mini project.pdfDocument  Atm machine using c language mini project.pdf
Document Atm machine using c language mini project.pdf
 
"Bank management system"
"Bank management system""Bank management system"
"Bank management system"
 
Bank Management System
Bank Management SystemBank Management System
Bank Management System
 
Project report on (atm MAnagment system)
Project report on (atm MAnagment system)Project report on (atm MAnagment system)
Project report on (atm MAnagment system)
 
Online bankingppt
Online bankingpptOnline bankingppt
Online bankingppt
 
Banking application & software solutions at competitive rate
Banking application & software solutions at competitive rateBanking application & software solutions at competitive rate
Banking application & software solutions at competitive rate
 
Atm.ppt
Atm.pptAtm.ppt
Atm.ppt
 
Atm software
Atm softwareAtm software
Atm software
 
Cbsecomputersciencecclass12boardproject bankmanagmentsystem-180703065625-conv...
Cbsecomputersciencecclass12boardproject bankmanagmentsystem-180703065625-conv...Cbsecomputersciencecclass12boardproject bankmanagmentsystem-180703065625-conv...
Cbsecomputersciencecclass12boardproject bankmanagmentsystem-180703065625-conv...
 

Recently uploaded

UNIT-III FMM. DIMENSIONAL ANALYSIS
UNIT-III FMM.        DIMENSIONAL ANALYSISUNIT-III FMM.        DIMENSIONAL ANALYSIS
UNIT-III FMM. DIMENSIONAL ANALYSISrknatarajan
 
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINEMANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINESIVASHANKAR N
 
College Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service NashikCollege Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service NashikCall Girls in Nagpur High Profile
 
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...ranjana rawat
 
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escortsranjana rawat
 
IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...
IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...
IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...RajaP95
 
Top Rated Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...
Top Rated  Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...Top Rated  Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...
Top Rated Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...Call Girls in Nagpur High Profile
 
Coefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptxCoefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptxAsutosh Ranjan
 
Call Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service Nashik
Call Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service NashikCall Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service Nashik
Call Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service NashikCall Girls in Nagpur High Profile
 
Processing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptxProcessing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptxpranjaldaimarysona
 
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝soniya singh
 
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur EscortsCall Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur High Profile
 
Extrusion Processes and Their Limitations
Extrusion Processes and Their LimitationsExtrusion Processes and Their Limitations
Extrusion Processes and Their Limitations120cr0395
 
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICSAPPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICSKurinjimalarL3
 
Introduction to IEEE STANDARDS and its different types.pptx
Introduction to IEEE STANDARDS and its different types.pptxIntroduction to IEEE STANDARDS and its different types.pptx
Introduction to IEEE STANDARDS and its different types.pptxupamatechverse
 
HARMONY IN THE NATURE AND EXISTENCE - Unit-IV
HARMONY IN THE NATURE AND EXISTENCE - Unit-IVHARMONY IN THE NATURE AND EXISTENCE - Unit-IV
HARMONY IN THE NATURE AND EXISTENCE - Unit-IVRajaP95
 
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130Suhani Kapoor
 
SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )Tsuyoshi Horigome
 

Recently uploaded (20)

UNIT-III FMM. DIMENSIONAL ANALYSIS
UNIT-III FMM.        DIMENSIONAL ANALYSISUNIT-III FMM.        DIMENSIONAL ANALYSIS
UNIT-III FMM. DIMENSIONAL ANALYSIS
 
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINEMANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
 
★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR
★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR
★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR
 
College Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service NashikCollege Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
 
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
 
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
 
IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...
IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...
IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...
 
Top Rated Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...
Top Rated  Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...Top Rated  Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...
Top Rated Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...
 
Coefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptxCoefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptx
 
Call Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service Nashik
Call Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service NashikCall Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service Nashik
Call Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service Nashik
 
Processing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptxProcessing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptx
 
Roadmap to Membership of RICS - Pathways and Routes
Roadmap to Membership of RICS - Pathways and RoutesRoadmap to Membership of RICS - Pathways and Routes
Roadmap to Membership of RICS - Pathways and Routes
 
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
 
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur EscortsCall Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
 
Extrusion Processes and Their Limitations
Extrusion Processes and Their LimitationsExtrusion Processes and Their Limitations
Extrusion Processes and Their Limitations
 
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICSAPPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
 
Introduction to IEEE STANDARDS and its different types.pptx
Introduction to IEEE STANDARDS and its different types.pptxIntroduction to IEEE STANDARDS and its different types.pptx
Introduction to IEEE STANDARDS and its different types.pptx
 
HARMONY IN THE NATURE AND EXISTENCE - Unit-IV
HARMONY IN THE NATURE AND EXISTENCE - Unit-IVHARMONY IN THE NATURE AND EXISTENCE - Unit-IV
HARMONY IN THE NATURE AND EXISTENCE - Unit-IV
 
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
 
SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )
 

PPS.pptx this ppt is for coding your problems and to do ppt for new students for easily

  • 1. A MINI PROJECT ON BANK MANAGEMENT SYSTEM By J.SIDDARTHA 237R1A0425 DINESH RATHOD 237R1A0455
  • 3. INTRODUCTION : The project entitled “Bank management system” is a computerized telecommunications device that provides the customers of a financial institution with access to financial transactions in a public space without the need for a human clerk or bank taller (manpower). Thousands of bank performs millions of transactions every day and thousands of users used banking system in day to day life. As we know that if number of users increases us need more banks and more staff it means increasing manual work also we put more amount of money in bank it is more risky and not much secure
  • 4. Scope Of Project: Creating new user account Deposit Amount Withdrawal amount Fast cash (withdrawal) Pin change Maintain Reports
  • 5. LITERATURE SURVEY/ RELATED WORK: In [1], Information and communication technology (ICT) has helped to helped to drive increasingly intense global Competition. In the world history the most of the countries are most developed because of they are financially very clear for how to use the high amount of money in the developing process in own country . We also use the SOA architecture for providing the scalable and reliable service therefor we studied related to the SOA architecture to know how we use to implementation process in our project using Service Oriented Architectures (SOA
  • 6. PROPOSED SYSTEM: The proposed system is highly computerized in which the data related to user accounts will be secured high with high accuracy that even reduced the machine damage and human made errors and this existing system is highly efficient to offer best services to the customers as well as bank because it has user friendly access that customers less time when compare with a normal banking system. When the data is entered it will check for its validity
  • 7.
  • 8. Advantages:  No need of bank employee for creation of account into bank.  Time saving along with quality services.  Smooth and timely execution of reports.  This managements can also provide the reports for every user.  The records like Transactions, creating accounts and PIN. change also retrieve after wards.
  • 9. Hardware And Software Specification: Software requirement: • Operating system:windows xp/7/8/10. • Front end: JAVA netbeans-8.2. • Framework: swing and AWT • Back end: MySQL Server. Hardware requirement: • Processor : intel ,Dual Core or above. • Primary memory(RAM):512 MB or above. • Secondary memory(ROM): 40GB or above.
  • 10. How it Program works: The data to be storedis: Account number, Name, Balance in account. Program must be menu driven with following options  Print the Account number and name and balance of each customer.  Withdraw money.  Deposit money.  Search customer.
  • 11. Code: #include <stdio.h> #include <stdlib.h> struct Account { int accNumber; char name[50]; float balance; }; void createAccount(struct Account *accounts, int *numAccounts) { printf("Enter account number: "); scanf("%d", &accounts[*numAccounts].accNumber); printf("Enter account holder name: "); scanf("%s", accounts[*numAccounts].name); printf("Enter initial balance: "); scanf("%f", &accounts[*numAccounts].balance); (*numAccounts)++; printf("Account created successfully!n"); }
  • 12. void displayAccount(struct Account account) { printf("Account Number: %dn", account.accNumber); printf("Account Holder: %sn", account.name); printf("Balance: $%.2fn", account.balance); } void displayAllAccounts(struct Account *accounts, int numAccounts) { if (numAccounts == 0) { printf("No accounts found.n"); return; } printf("All Bank Accounts:n"); for (int i = 0; i < numAccounts; i++) { displayAccount(accounts[i]); printf("n"); } }
  • 13. int main() { struct Account accounts[100]; int numAccounts = 0; int choice; do { printf("nBank Management Systemn"); printf("1. Create Accountn"); printf("2. Display All Accountsn"); printf("3. Exitn"); printf("Enter your choice: "); scanf("%d", &choice); switch (choice) { case 1: createAccount(accounts, &numAccounts); break; case 2: displayAllAccounts(accounts, numAccounts); break; case 3: printf("Exiting...n"); exit(0); default: printf("Invalid choice. Please try again.n"); } } while (1); return 0; }
  • 14. Conclusion: This project is developed to nature the needs of a user in a Banking sector by embedding all the tasks of transactions taking Place in bank. Future version of this software will still be much enhanced than The current version. Thus the Management system it is developed and Executed successfully.