Computer Project 12 Class CBSE

January 23, 2017 | Author: Nitish Jadia | Category: N/A
Share Embed Donate


Short Description

Download Computer Project 12 Class CBSE...

Description

Prepared byV.Rangarajan Nitish Jadia

Topic: Banking Management

Class - XII C

Prepared under the guidance ofTeacher’s Name

(Sr. computer lecturer)

CERTIFICATE Nitish Jadia

Signature :

Date

……………….

: ……..…………

V Rangarajan

Acknowledgement We would like to thank Teacher’s Name , Senior Lecturer (Computer Science) , for his able guidance and the support exhibited by him in the completion of the project.

It gives us great pleasure in presenting this project . We extend our gratitude to our worthy colleagues for conveying their valuable suggestions to improve the quality of this Project and its value . This project has contributed invariably in improving and increasing our knowledge about this language which will hopefully prove to be profitable for us in future.

Thanking you Nitish Jadia V. Rangarajan

About C++ C++ is a statically typed, free-form, multi-paradigm, compiled, general-purpose programming. It is regarded as an intermediate-level language, as it comprises a combination of both high and lowlevel language features. Developed by Bjarne Stroustrup starting in 1979 at Bell Labs, it adds object oriented features, such as classes, and other enhancements to the C programming language. Originally named C with Classes, the language was renamed C++ in 1983, as a pun involving the increment operator.

C++ is one of the most popular programming languages and is implemented on a wide variety of hardware and operating system platforms. As an efficient compiler to native code, its application domains include systems software, application software, device drivers, embedded software, high-performance server and client applications, and entertainment software such as video games. Several groups provide both free and proprietary C++ compiler software, including the GNU Project, Microsoft, Intel and Embarcadero Technologies. C++ has greatly influenced many other popular programming languages, most notably C# and Java. Other successful languages such as Objective-C use a very different syntax and approach to adding classes to C.

C++ is also used for hardware design, where the design is initially described in C++, then analyzed, architecturally constrained, and scheduled to create a register-transfer level hardware description language via high.

The language began as enhancements to C, first adding classes, then virtual functions, overloading, multiple, templates and exception handling among other features. After years of development, the C++ programming language standard was ratified in 1998 as ISO/IEC 14882:1998. The standard was amended by the 2003 technical corrigendum, ISO/IEC 14882:2003. The current standard extending C++ with new features was ratified and published by ISO in September 2011 as ISO/IEC 14882:2011 (informally known as C++11).

Banking Banks act as payment agents by conducting checking or current accounts for customers, paying check drawn by customers on the bank, and collecting checks deposited to customers' current accounts. Banks also enable customer payments via other payment methods such as Automated Clearing House (ACH), Wire transfers or telegraphic transfer, EFTPOS, and automated teller machine (ATM).

Banks borrow money by accepting funds deposited on current accounts, by accepting term deposits, and by issuing debt securities such as banknotes and bonds. Banks lend money by making advances to customers on current accounts, by making installment loans, and by investing in marketable debt securities and other forms of money lending.

Banks provide almost all payment services, and a bank account is considered indispensable by most businesses, individuals and governments. Non-banks that provide payment services such as remittance companies are not normally considered an adequate substitute for having a bank account.

Banks borrow most funds from households and non-financial businesses, and lend most funds to households and non-financial businesses, but non-bank lenders provide a significant and in many cases adequate substitute for bank loans, and money market funds, cash management trusts and other non-bank financial institutions in many cases provide an adequate substitute to banks for lending savings too.

Therefore, this program is a simple example of commercial programs used by Banks and their Managements.

Program Source Code * /* * ---------------------------------------------------------------------------File:banking.CPP Project submited by - Nitish Jadia, V Rangrajan * ---------------------------------------------------------------------------*/

//*************************************************************** //

HEADER FILE USED IN PROJECT

//****************************************************************

#include #include #include #include #include #include

//*************************************************************** //

CLASS USED IN PROJECT

//****************************************************************

class account { int acno; char name[50]; int deposit; char type; public: void create_account();

//function to get data from user

void show_account();

//function to show data on screen

void modify();

};

//function to get new data from user

void dep(int);

//function to accept amount and add to balance amount

void draw(int);

//function to accept amount and subtract from balance amount

void report();

//function to show data in tabular format

int retacno();

//function to return account number

int retdeposit();

//function to return balance amount

char rettype();

//function to return type of account

//class ends here

void account::create_account() { coutacno; coutdeposit; cout
View more...

Comments

Copyright ©2017 KUPDF Inc.
SUPPORT KUPDF