preview

C + Based Banking System Application Essay

Good Essays

C++ BASED BANKING SYSTEM APPLICATION

SUBMITTED BY :KUSHAGRA MISHRA PROJECT GUIDED BY:MR.RAJESH KUMAR
COURSE:B.TECH CSE
ENROLLMENT NO :A12405213030

DESCRIPTION: This is a C++ based BANK MANAGEMENT PROGRAM.With the help of this user can create,modife,delete,update,withrawl,deposit,as per there requirement.We have used various functions to perform above function of creating,modifying,deleteing,updating etc.
So,this program is based as per to fulfill the needs of bank customer.

#include<fstream.h>
#include<ctype.h>
#include<iomanip.h>
#include<conio.h>
#include<stdio.h>

//***************************************************************
// CLASS USED IN THIS BANK MANAGEMENT PROGRAM
//****************************************************************

class account
{
int acno_info; char namegiven[50]; int deposit_kush; char type; public: void create_accountkush(); //function to get the data from the user . void show_accountkush(); //function to show data on the screen . void modifykush(); //function to get new data from user. void depkush(int); //function to accept amount and add to balance amount. void drawkush(int); //function to accept amount and subtract from balance amount. void report(); //function to show the given data in tabular form.

Get Access