forked from monuverma1501/HactoberFest2022
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Students_Management_System.c
300 lines (280 loc) · 7.25 KB
/
Students_Management_System.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
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
// C program for the implementation of By: khushhal69
// menu driven program for student
// management system
#include <math.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
// Variable to keep track of
// number of students
int i = 0;
// Structure to store the student
struct sinfo {
char fname[50];
char lname[50];
int roll;
float cgpa;
int cid[10];
} st[55];
// Function to add the student
void add_student()
{
printf("Add the Students Details\n");
printf("-------------------------\n");
printf("Enter the first "
"name of student\n");
scanf("%s", st[i].fname);
printf("Enter the last name"
" of student\n");
scanf("%s", st[i].lname);
printf("Enter the Roll Number\n");
scanf("%d", &st[i].roll);
printf("Enter the CGPA "
"you obtained\n");
scanf("%f", &st[i].cgpa);
printf("Enter the course ID"
" of each course\n");
for (int j = 0; j < 5; j++) {
scanf("%d", &st[i].cid[j]);
}
i = i + 1;
}
// Function to find the student
// by the roll number
void find_rl()
{
int x;
printf("Enter the Roll Number"
" of the student\n");
scanf("%d", &x);
for (int j = 1; j <= i; j++) {
if (x == st[i].roll) {
printf(
"The Students Details are\n");
printf(
"The First name is %s\n",
st[i].fname);
printf(
"The Last name is %s\n",
st[i].lname);
printf(
"The CGPA is %f\n",
st[i].cgpa);
printf(
"Enter the course ID"
" of each course\n");
}
for (int j = 0; j < 5; j++) {
printf(
"The course ID are %d\n",
st[i].cid[j]);
}
break;
}
}
// Function to find the student
// by the first name
void find_fn()
{
char a[50];
printf("Enter the First Name"
" of the student\n");
scanf("%s", a);
int c = 0;
for (int j = 1; j <= i; j++) {
if (!strcmp(st[j].fname, a)) {
printf(
"The Students Details are\n");
printf(
"The First name is %s\n",
st[i].fname);
printf(
"The Last name is %s\n",
st[i].lname);
printf(
"The Roll Number is %d\n ",
st[i].roll);
printf(
"The CGPA is %f\n",
st[i].cgpa);
printf(
"Enter the course ID of each course\n");
for (int j = 0; j < 5; j++) {
printf(
"The course ID are %d\n",
st[i].cid[j]);
}
c = 1;
}
else
printf(
"The First Name not Found\n");
}
}
// Function to find
// the students enrolled
// in a particular course
void find_c()
{
int id;
printf("Enter the course ID \n");
scanf("%d", &id);
int c = 0;
for (int j = 1; j <= i; j++) {
for (int d = 0; d < 5; d++) {
if (id == st[j].cid[d]) {
printf(
"The Students Details are\n");
printf(
"The First name is %s\n",
st[i].fname);
printf(
"The Last name is %s\n",
st[i].lname);
printf(
"The Roll Number is %d\n ",
st[i].roll);
printf(
"The CGPA is %f\n",
st[i].cgpa);
c = 1;
break;
}
else
printf(
"The First Name not Found\n");
}
}
}
// Function to print the total
// number of students
void tot_s()
{
printf("The total number of"
" Student is %d\n",
i);
printf("\n you can have a "
"max of 50 students\n");
printf("you can have %d "
"more students\n",
50 - i);
}
// Function to delete a student
// by the roll number
void del_s()
{
int a;
printf("Enter the Roll Number"
" which you want "
"to delete\n");
scanf("%d", &a);
for (int j = 1; j <= i; j++) {
if (a == st[j].roll) {
for (int k = j; k < 49; k++)
st[k] = st[k + 1];
i--;
}
}
printf("The Roll Number"
" is removed Successfully\n");
}
// Function to update a students data
void up_s()
{
printf("Enter the roll number"
" to update the entry : ");
long int x;
scanf("%ld", &x);
for (int j = 0; j < i; j++) {
if (st[j].roll == x) {
printf("1. first name\n"
"2. last name\n"
"3. roll no.\n"
"4. CGPA\n"
"5. courses\n");
int z;
scanf("%d", &z);
switch (z) {
case 1:
printf("Enter the new "
"first name : \n");
scanf("%s", st[j].fname);
break;
case 2:
printf("Enter the new "
"last name : \n");
scanf("%s", st[j].lname);
break;
case 3:
printf("Enter the new "
"roll number : \n");
scanf("%d", &st[j].roll);
break;
case 4:
printf("Enter the new CGPA : \n");
scanf("%f", &st[j].cgpa);
break;
case 5:
printf("Enter the new courses \n");
scanf(
"%d%d%d%d%d", &st[j].cid[0],
&st[j].cid[1], &st[j].cid[2],
&st[j].cid[3], &st[j].cid[4]);
break;
}
printf("UPDATED SUCCESSFULLY.\n");
}
}
}
// Driver code
void main()
{
int choice, count;
while (i = 1) {
printf("The Task that you "
"want to perform\n");
printf("1. Add the Student Details\n");
printf("2. Find the Student "
"Details by Roll Number\n");
printf("3. Find the Student "
"Details by First Name\n");
printf("4. Find the Student "
"Details by Course Id\n");
printf("5. Find the Total number"
" of Students\n");
printf("6. Delete the Students Details"
" by Roll Number\n");
printf("7. Update the Students Details"
" by Roll Number\n");
printf("8. To Exit\n");
printf("Enter your choice to "
"find the task\n");
scanf("%d", &choice);
switch (choice) {
case 1:
add_student();
break;
case 2:
find_rl();
break;
case 3:
find_fn();
break;
case 4:
find_c();
break;
case 5:
tot_s();
break;
case 6:
del_s();
break;
case 7:
up_s();
break;
case 8:
exit(0);
break;
}
}
}