-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfullprojectcode.c
More file actions
303 lines (299 loc) · 5.14 KB
/
fullprojectcode.c
File metadata and controls
303 lines (299 loc) · 5.14 KB
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
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
#include<stdio.h>
#include<conio.h>
#include<stdlib.h>
#include<string.h>
void add();
void sell();
void modify();
void del();
void diss();
void disp();
void search();
struct node{
char pname[20];
char price[20];
int quan;
struct node *link;
};
struct node *head=NULL;
struct node *g=NULL;
void main()
{
int ch;
system("cls");
do
{
printf("\n\t\t");
printf(" ********* *ELECTRONIC STORE* *********\n");
printf("\n\n\n\n\n\n\t\t\t");
printf("1.Add Products\n\t\t\t2.Modify Products\n\t\t\t3.Delete Products\n\t\t\t4.Search Products\n\t\t\t5.Display Products\n\t\t\t6.Sell products\n\t\t\t7.Display sales\n\t\t\t8.Exit\n\t\t\t");
printf("\n\n\tEnter your choice: ");
scanf("%d",&ch);
switch(ch)
{
case 1: add();
break;
case 2: modify();
break;
case 3: del();
break;
case 4: search();
break;
case 5: disp();
break;
case 6: sell();
break;
case 7: diss();
break;
case 8: exit(0);
break;
default:
system("cls");
printf("\nWrong Choice!!!\n");
break;
}
printf("\n\nPress any key to go back to the menu\n");
getch();
system("cls");
}while(1);
}
void add()
{
struct node *temp;
system("cls");
temp=(struct node *)malloc(sizeof(struct node));
printf("\nEnter the name of the product: ");
fflush(stdin);
scanf("%[^\n]s",temp->pname);
printf("\nEnter the price of the product: ");
scanf("%s",temp->price);
printf("\nEnter the number of products: ");
scanf("%d",&temp->quan);
printf("\nProduct added!!!\n");
temp->link=NULL;
if(head==NULL)
{
head=temp;
}
else
{
struct node *p;
p=head;
while(p->link!=NULL)
{
p=p->link;
}
p->link=temp;
}
}
void modify()
{
char edt[20];
struct node *p;
system("cls");
p=head;
if(p==NULL)
{
printf("\nNothing to modify!!!\n");
}
else
{
printf("\nEnter the product you want to edit: ");
fflush(stdin);
scanf("%[^\n]s",edt);
while(strcmpi(edt,p->pname)!=0&&p->link!=NULL)
{
p=p->link;
}
if(strcmpi(edt,p->pname)==0)
{
printf("\nEnter the new name of the product: ");
fflush(stdin);
scanf("%[^\n]s",p->pname);
printf("\nEnter the price of the product: ");
scanf("%s",p->price);
printf("\nEnter the number of products: ");
scanf("%d",&p->quan);
printf("\nProduct modified!!!\n");
}
else
{
printf("\nProduct not found!!!\n");
}
}
}
void sell()
{
char sel[20];
int no;
struct node *p,*q;
struct node *tmp;
system("cls");
p=head;
if(head==NULL)
{
printf("\nNothing to sell!!!\n");
}
else
{
printf("\nEnter the product you want to sell: ");
fflush(stdin);
scanf("%[^\n]s",sel);
printf("\nNumber of products you want to sell: ");
scanf("%d",&no);
while(strcmpi(sel,p->pname)!=0&&p->link!=NULL)
{
p=p->link;
}
if(strcmpi(sel,p->pname)==0&&p->quan>=no)
{
p->quan=p->quan-no;
printf("\nProduct sold!!!\n");
tmp=(struct node *)malloc(sizeof(struct node));
strcpy(tmp->pname,p->pname);
tmp->quan=no;
strcpy(tmp->price,p->price);
tmp->link=NULL;
if(g==NULL)
{
g=tmp;
}
else
{
q=g;
while(q->link!=NULL)
{
q=q->link;
}
q->link=tmp;
}
}
else
{
if(strcmpi(sel,p->pname)!=0)
{
printf("\nProduct not found!!!\n");
}
else
{
printf("\nProduct quantity not available!!!\n");
}
}
}
}
void del()
{
struct node *p,*q;
char del[20];
system("cls");
p=head;
q=head->link;
if(head==NULL)
{
printf("\nNothing to delete!!!\n");
}
else
{
printf("\nEnter the product you want to delete: ");
fflush(stdin);
scanf("%[^\n]s",del);
if(strcmpi(del,p->pname)==0)
{
head=head->link;
printf("\nProduct deleted!!!\n");
}
else {
while(strcmpi(del,q->pname)!=0&&q->link!=NULL)
{
p=p->link;
q=q->link;
}
if(strcmpi(del,q->pname)==0)
{
p->link=q->link;
free(q);
printf("\nProduct deleted!!!\n");
}
else
{
printf("\nProduct not found!!!\n");
}
}
}
}
void search()
{
struct node *p;
char ser[20];
system("cls");
p=head;
if(p==NULL)
{
printf("\nNothing to search!!!\n");
}
else
{
printf("\nEnter the product you want to search: ");
fflush(stdin);
scanf("%[^\n]s",ser);
while(strcmpi(ser,p->pname)!=0&&p->link!=NULL)
{
p=p->link;
}
if(strcmpi(ser,p->pname)==0)
{
printf("\nName of product: %s\n",p->pname);
printf("Price of product: %s\n",p->price);
printf("Products available: %d\n",p->quan);
}
else
{
printf("\nProduct not found!!!\n");
}
}
}
void disp()
{
struct node *p;
int ch;
system("cls");
p=head;
if(p==NULL)
{
printf("\nNothing to display!!!\n");
}
else
{
printf("\nProducts are:\n\n");
while(p!=NULL)
{
printf("Name of product: %s\n",p->pname);
printf("Price of product: %s\n",p->price);
printf("Products available: %d\n",p->quan);
printf("------------------------------------\n\n");
p=p->link;
}
}
}
void diss()
{
struct node *a;
system("cls");
a=g;
if(a==NULL)
{
printf("\nNothing to display!!!\n");
}
else
{
printf("\nProducts are:\n\n");
while(a!=NULL)
{
printf("Name of product: %s\n",a->pname);
printf("Price of product: %s\n",a->price);
printf("Products sold: %d\n",a->quan);
printf("------------------------------------\n\n");
a=a->link;
}
}
}