Transaction Management Using C Programming Language

   

Added on  2022-10-12

20 Pages1253 Words493 Views
Running Head: TRANSACTION MANAGEMENT USING C PROGRAMMING LANGUAGE
TRANSACTION MANAGEMENT USING C PROGRAMMING LANGUAGE
Name of the Student:
Name of the University:
Author Note:
Transaction Management Using C Programming Language_1
TRANSACTION MANAGEMENT USING C PROGRAMMING LANGUAGE2
Table of Contents
Introduction......................................................................................................................................3
Discussion........................................................................................................................................3
The functions used in the program..............................................................................................3
Outputs generated..........................................................................................................................12
Conclusion.....................................................................................................................................18
Bibliography..................................................................................................................................20
Transaction Management Using C Programming Language_2
TRANSACTION MANAGEMENT USING C PROGRAMMING LANGUAGE3
Introduction
C programming language is considered as one of the base programming language for
other computer languages, thus it is also known as the Mother language. In C programming
language the codes are divided in to smaller parts which are known as functions and the
instruction in the functions are followed by the computer. This is the reason why C programming
language is also known as Procedure Oriented Programming language or POP. A top down
approach is followed by C programming language and is also known as structured programming
language. In this report, a simple implementation of a bank transaction system is briefly
described. The writing and execution of the code is done using the Dev C++ IDE, version 5.11.
Discussion
The functions used in the program
void new_acc();
void view_list();
void edit(void);
void transact(void);
void erase(void);
void see(void);
void new_acc():
Transaction Management Using C Programming Language_3
TRANSACTION MANAGEMENT USING C PROGRAMMING LANGUAGE4
The new_acc function is used to create new account. All the inputs are provided by the
user. The file pointer *ptr is used to traverse the file. The inputs are provided by the user and
there is also a validation check for the account number. The structure that is used in this program
is:
struct {
char name[60];
int acc_no,age;
char address[60];
char citizenship[15];
double phone;
char acc_type[10];
float amt;
struct date dob;
struct date deposit;
struct date withdraw;
}add,upd,check,rem,transaction;
Transaction Management Using C Programming Language_4

End of preview

Want to access all the pages? Upload your documents or become a member.

Related Documents
OOPS Programming Concept: Bank Account Simulation Program in Java with Inheritance and Encapsulation
|10
|1366
|278

OOPS Concepts: C++
|10
|1216
|314

The Java Programming Document
|19
|2557
|43

Introduction to C++ Programming Language in Eclipse IDE
|7
|1300
|168

State Machine Diagram for ATM Project 2022
|4
|471
|32

Management Information Systems - Desklib
|5
|1034
|429