-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.c
More file actions
237 lines (202 loc) · 5.25 KB
/
Copy pathmain.c
File metadata and controls
237 lines (202 loc) · 5.25 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
#include <stdio.h>
#include <string.h>
struct student {
int roll_no;
char name[25];
char fname[25];
int age;
float marks;
};
void AddStudent(){
FILE *fp;
struct student s;
fp = fopen("data/student.dat","ab+");
if (fp == NULL){
printf("File could not be opened.");
return;
}
printf("\nEnter Roll no:");
scanf("%d",&s.roll_no);
getchar();
printf("Enter Student Name:");
fgets(s.name,sizeof(s.name),stdin);
s.name[strcspn(s.name, "\n")] = 0;
printf("Enter Fathers Name:");
fgets(s.fname,sizeof(s.fname),stdin);
s.fname[strcspn(s.fname, "\n")] = 0;
printf("Enter Age:");
scanf("%d",&s.age);
getchar();
printf("Enter Marks:");
scanf("%f",&s.marks);
getchar();
fwrite(&s,sizeof(s),1,fp);
fclose(fp);
printf("Studend Added Sucessfully\n");
}
void SearchStudent(){
FILE *fp;
struct student s;
int roll,found=0;
fp = fopen("data/student.dat","rb");
if (fp == NULL){
printf("File could not be opened.");
return;
}
printf("Enter Roll No to Search:");
scanf("%d",&roll);
getchar();
while (fread(&s,sizeof(s),1,fp)){
if (s.roll_no == roll){
printf("\nRoll No: %d\n",s.roll_no);
printf("Name: %s\n",s.name);
printf("Father's Name: %s\n",s.fname);
printf("Age: %d\n",s.age);
printf("Marks: %.2f\n",s.marks);
found = 1;
}
}
fclose(fp);
if (!found){
printf("Student Not Found\n");
}
}
void DisplayStudent(){
FILE *fp;
struct student s;
int roll,found=0;
fp = fopen("data/student.dat","rb");
if (fp == NULL){
printf("File could not be opened.");
return;
}
printf("\n---------------------------------------------------------------------------\n");
printf("%-6s %-25s %-25s %-5s %-6s","Roll No","Student Name","Father's Name","Age","Marks");
printf("\n---------------------------------------------------------------------------\n");
while (fread(&s,sizeof(s),1,fp)){
printf("%-6d %-25s %-25s %-5d %-6.2f",
s.roll_no,
s.name,
s.fname,
s.age,
s.marks
);
found = 1;
}
fclose(fp);
if (!found){
printf("No Student to Display");
}
printf("\n---------------------------------------------------------------------------\n");
}
void UpdateStudent(){
FILE *fp,*temp;
struct student s;
int roll,found = 0;
fp = fopen("data/student.dat","rb");
temp = fopen("data/temp.dat","wb");
if (fp == NULL || temp == NULL){
printf("File could not be opened");
return;
}
printf("Enter Roll No to be Updated: ");
scanf("%d",&roll);
getchar();
while (fread(&s,sizeof(s),1,fp)){
if (s.roll_no == roll){
printf("Enter Student Name:");
fgets(s.name,sizeof(s.name),stdin);
s.name[strcspn(s.name, "\n")] = 0;
printf("Enter Fathers Name:");
fgets(s.fname,sizeof(s.fname),stdin);
s.fname[strcspn(s.fname, "\n")] = 0;
printf("Enter Age:");
scanf("%d",&s.age);
getchar();
printf("Enter Marks:");
scanf("%f",&s.marks);
getchar();
found = 1;
}
fwrite(&s,sizeof(s),1,temp);
}
fclose(fp);
fclose(temp);
remove("data/student.dat");
rename("data/temp.dat","data/student.dat");
if(!found){
printf("No data found");
}
else{
printf("Data updated Successfully");
}
}
void DeleateStudent(){
FILE *fp,*temp;
struct student s;
int roll,found = 0;
fp = fopen("data/student.dat","rb");
temp = fopen("data/temp.dat","wb");
if (fp == NULL || temp == NULL){
printf("File could not be opened");
return;
}
printf("Enter Roll No to be Deleted: ");
scanf("%d",&roll);
getchar();
while (fread(&s,sizeof(s),1,fp)){
if (s.roll_no == roll){
found = 1;
continue;
}
fwrite(&s,sizeof(s),1,temp);
}
fclose(fp);
fclose(temp);
remove("data/student.dat");
rename("data/temp.dat","data/student.dat");
if(!found){
printf("No data found");
}
else{
printf("Data Deleted Successfully");
}
}
int main(){
int n;
do{
printf("\n-----------STUDENT MANAGEMENT SYSTEM--------------\n");
printf("1.Add New Student\n");
printf("2.Search a Student\n");
printf("3.Display All Students\n");
printf("4.Update a Student\n");
printf("5.Delete a Student\n");
printf("6.Exit\n");
printf("Enter Your Choice:");
scanf("%d",&n);
getchar();
switch (n)
{
case 1:
AddStudent();
break;
case 2:
SearchStudent();
break;
case 3:
DisplayStudent();
break;
case 4:
UpdateStudent();
break;
case 5:
DeleateStudent();
break;
case 6:
break;
default:
printf("Invalid Choice\n");
break;
}
}while (n != 6);
}