-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathATM Program In C
217 lines (208 loc) · 5.24 KB
/
ATM Program In C
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
#include <stdio.h>
#include <string.h>
#include <conio.h>
#include <stdlib.h>
FILE *fp;
FILE *ft;
FILE *bl;
void login();
void newacc();
void transaction();
void anothertransaction();
void asklogin();
struct {
char user[20];
char pass[20];
char newuser[20];
char newpass[20];
} s;
struct balancing {
float balance;
float withdrow;
float deposit;
} b = { 0.000};
char file[255];
int main() {
char op;
int num;
do {
printf("\n\t\t\t\t\t\t<== WELCOME TO ATM ==>");
printf("\n\t\tLOG IN\t( L / l ) \n\n\t\tSIGN UP\t( S / s ) \n\n\t\tEXIT\t( E / e ) \n\n\t\tPLEASE SELECT YOUR CHOICE --> ");
scanf("%c", &op);
switch (op) {
case 'S':
case 's':
newacc();
break;
case 'L':
case 'l':
login();
break;
case 'E':
case 'e':
exit('e');
break;
printf("\t\tError ...... please Select Valid Option");
}
printf("\n\t\t <== Do you Want To Do It Again ==> \n\t\tPRESS [ 1 ] -->\t \n\n");
scanf("%d",&num);
if(num==1){
main();
}
printf("\n\t<== Press any key to continue ==>\n");
getch();
} while (op == 'e' || op == 'E');
return 0;
}
//..................................................... Log in Program ...........................................................................
void login() {
int found = 0 ;
fp = fopen("atm.txt", "rb");
printf("\t\tEnter Your Username --> ");
scanf("%s", &s.user);
printf("\n\t\tEnter Your Password --> ");
scanf("%s", &s.pass);
printf("\n\t\tThe Username Is %s And The Password Is %s\n", s.user, s.pass);
if (fp == NULL) {
printf("\tFile is empty");
} else {
int u = 0;
int p = 0;
int c = 0;
while (fscanf(fp, "%s", &file) == 1) {
char *fds = strtok(file, ";");
while (fds != NULL) {
if (c == 0) {
if (strcmp(fds, s.user) == 0) {
u = 1;
}
c++;
} else {
if (strcmp(fds, s.pass) == 0) {
if (u == 0) {
p = 0;
} else
p = 1;
}
c = 0;
}
fds = strtok(NULL, " ");
}
if (u == 1 && p == 1) {
found = 1;
printf("\n\t\t <<== Access Granted ==>>\n");
bl=fopen("Balancing.txt","a+");
fputs(s.user,bl);
fputs(";",bl);
fputs(s.pass,bl);
fputs("\n\n",bl);
fclose(bl);
transaction();
break;
}
// else{
// printf("\n\tAccess Denied\n");
// printf("\n\t<== Sorry You Need to Make Your Account First Then you Will Able TO Continue ==> \n ");
}
}
if(found == 0 ){
printf("\n\t\t\t\t\t<== Account Not Found ==> \n\n");
}
}
//............................................................... New Account ......................................................................
void newacc() {
char number[11];
char name[20];
char email[50];
ft=fopen("info.txt","a+");
fp = fopen("atm.txt", "a+");
printf("\n\t\tEnter Your Username --> ");
scanf("%s",s.newuser);
fputs(s.newuser, fp);
fputs(s.newuser,ft);
fputs("\t\t\t",ft);
fputs(";", fp);
printf("\n\t\tEnter Your Password --> ");
scanf("%s",s.newpass);
fputs(s.newpass, fp);
fputs(s.newpass,ft);
fputs("\t\t\t",ft);
fputs("\n", fp);
printf("\n\t\tEnter Your Number --> ");
scanf("%s",&number);
fputs(number,ft);
fputs("\t\t\t",ft);
printf("\n\t\tEnter Your Name --> ");
scanf("%s",&name);
fputs(name,ft);
fputs("\t\t\t",ft);
printf("\n\t\tEnter Your E-mail --> ");
scanf("%s",email);
fputs(email,ft);
fputs("\n",ft);
printf("\n\t\tNow you are successfully Signed\n\n\t\t\t\t<== Thanks==>\n\n");
fclose(fp);
fclose(ft);
asklogin();
}
//...............................................................Transaction ........................................................................
void transaction() {
int ch;
printf("\t\t\t\t\t\t<== WELCOME ==> \n");
printf("\n\t\t1. Withdrow \n");
printf("\n\t\t2. Deposit \n");
printf("\n\t\t3. Balance \n");
printf("\n\t\tChoice Your Choice : ");
scanf("%d",&ch);
switch(ch) {
case 1:
printf("\n\t\tHow Much Money You Wanna Withdrow --> ");
scanf("%f",&b.withdrow);
if(b.withdrow > b.balance) {
printf("\n\t\tInsuffient Balance ");
}
else{
b.balance = b.balance - b.withdrow;
printf("\n\t\tYour Current balance is : %f",b.balance);
}
anothertransaction();
break;
case 2:
printf("\n\t\tHow Much Money You Wanna Deposit --> ");
scanf("%f",&b.deposit);
b.balance = b.balance + b.deposit;
printf("\n\t\tYour Current Balance : %f",b.balance);
anothertransaction();
break;
case 3:
printf("\n\t\tYour Current Balance Is --> %f",b.balance);
anothertransaction();
default : printf("\n\t\t<<== Please Choose a Valid Reason ==> \n\n");
}
}
//.........................................................Another Transacation ..................................................................
void anothertransaction() {
int at;
printf("\n\t\tDo You Want To Another Transaction \n\t\tThen Please press ( 1 ) --> ");
scanf("%d",&at);
if(at==1) {
transaction();
}
else
{
printf("\t\t\t\t\t\t<== Thanks For Using Our ATM ==> \n");
}
}
//.......................................................Aking For log in after Signing Up .......................................................
void asklogin(){
int num;
printf("\n\t\tDO YOU WANT TO LOG IN PRESS ( 1 ) --> ");
scanf("%d",&num);
if(num==1){
login();
}
else
{
printf("\t\t\t\t\t\t<== Thanks For Using Our ATM ==> \n");
}
}