-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstructs_nested.c
49 lines (45 loc) · 1.08 KB
/
structs_nested.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
#include <stdio.h>
#include <string.h>
struct subject
{
char subject_name[10];
int marks;
};
struct student
{
int student_id;
char student_name[10];
struct subject info[2];
};
int main()
{
int i,j;
struct student st[2];
printf("Enter Records of 2 students");
for (i = 0; i < 2; i++)
{
printf("\nEnter Rollno:");
scanf("%d", &st[i].student_id);
printf("\nEnter Name:");
scanf("%s", &st[i].student_name);
for (j=0;j<2;j++)
{
printf("\nEnter Subject Name:");
scanf("%s",&st[i].info[j].subject_name);
printf("\nEnter Subject Marks:");
scanf("%d",&st[i].info[j].marks);
}
}
printf("\nStudent Information List:\n");
for (i = 0; i < 2; i++)
{
printf("\nRollno:%d, Name:%s", st[i].student_id, st[i].student_name);
printf("\nMarks:\n");
for (j=0;j<2;j++)
{
printf("\nSubject:%s,\tmarks:%d",st[i].info[j].subject_name,st[i].info[j].marks);
printf("\n");
}
}
return 0;
}