-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstudntdetails1.c
55 lines (39 loc) · 1.5 KB
/
studntdetails1.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
#include<stdio.h>
#include<stdlib.h>
#include<string.h>
typedef struct student_details
{
int rollno;
char name[50];
char email[30];
char gender[10];
char stream[5];
}student;
int main() {
int student_no;
FILE * students2;
students2 = fopen("students2.txt", "r");
fscanf(students2, "%d \n", &student_no);
printf("The number of students are : %d \n", student_no);
student* student_details_Array = (student*)malloc(sizeof(student)*student_no);
for (int i = 0; i < student_no; i++)
{
fscanf(students2, "%d\n", &student_details_Array[i].rollno);
fgets(student_details_Array[i].name, 100, students2);
student_details_Array[i].name[strlen(student_details_Array[i].name)-1]='\0';
fgets(student_details_Array[i].email, 100, students2);
student_details_Array[i].email[strlen(student_details_Array[i].email)-1]='\0';
fgets(student_details_Array[i].gender, 100, students2);
student_details_Array[i].gender[strlen(student_details_Array[i].gender)-1]='\0';
fgets(student_details_Array[i].stream, 100, students2);
}
for (int i = 0; i < student_no; i++)
{
printf("%d\n", student_details_Array[i].rollno);
printf("%s\n", student_details_Array[i].name);
printf("%s\n", student_details_Array[i].email);
printf("%s\n", student_details_Array[i].gender);
printf("%s\n", student_details_Array[i].stream);
}
return 0;
}