A Synopsis Project On ATM Management System: Echelon Institute of Technology, Faridabad
A Synopsis Project On ATM Management System: Echelon Institute of Technology, Faridabad
Bachelor of Technology
In
Name- Ankit
1. TITLE OF PROJECT:-
ATM Management System
3. PROJECT CATEGORY:-
RDBMS
Account Database:-
The account database consists of details of
different accounts of users from different
branches. It will contain the account status
of the user which gets referred during
transactions.
Maintenance System:-
This system will maintain the cash fed into
the machine. If the machine goes out of
cash, prompt regarding the same will be sent
by the machine to the users and the main
database from where it will be sent to the
ATM managers.
BENEFICIARY:-
They need not carry a large amount of cash
with them. They can withdraw cash from
any city or state, across the country and
even from outside the country with the help
of ATM.
PRIVACY:-
ATM provide privacy in banking transactions of
the customer.
6. FUTURE SCOPE:-
The future will see multi-vendor ATM
popularity, which will provide personalized
features and a user friendly interface. ATM
will be a popular "Public Technology".
The ATM technology has developed to such
an extent that some ATMs can memorize
consumer preferences as per their past
transactions, behavior, and tailor services
accordingly.
Long gone are the prevalence of simple, single-
function ATMs. Advances in technologies have
allowed ATMs to follow digital trends over the
years. These days are most ATMs have touch-
screen computers running on Microsoft’s
Windows 10.
SOFTWARE REQUIREMENT:-
C Language
#include<stdio.h>
#include<conio.h>
int main()
{
float x,y;
char ch;
printf("Enter initial amount\n");
scanf("%f",&x);
printf("Enter \nc for credit\nd for debit\nb for balance\n");
scanf("\n%c",&ch);
switch(ch)
{
case 'c':
printf("Enter credit amount\n");
scanf("%f",&y);
x=x+y;
printf("New Amount=%f",x);
break;
case 'd':
printf("Enter debit amount\n");
scanf("%f",&y);
if(x>=y)
{
x=x-y;
printf("New Amount=%f",x);
}
else
{
printf("Insufficient amount in your account");
}
break;
case 'b':
printf("Amount in your account=%f",x);
break;
default:
printf("Choose correct option for operation");
}
}