-
-
Notifications
You must be signed in to change notification settings - Fork 83
Expand file tree
/
Copy pathprogram.c
More file actions
52 lines (48 loc) · 1.24 KB
/
program.c
File metadata and controls
52 lines (48 loc) · 1.24 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
#include <stdio.h>
struct student
{
char n[100];
char u[100];
int m;
}stud[10],stud2;
int main()
{
int n,i,p=0;
printf("Enter the number of student\n");
scanf("%d",&n);
for(i=1;i<=n;i++)
{
printf("Enter the details of student - %d\n",i);
printf("Enter the name of the student\n");
scanf("%s",stud[i].n);
printf("Enter USN\n");
scanf("%s",stud[i].u);
printf("Enter total marks\n");
scanf("%d",&stud[i].m);
}
printf("|\tSl.no\t|\tName\t\t|\tUSN\t\t|\tMark\t|\n");
for(i=1;i<=n;i++)
{
printf("|\t%d\t|\t%-10s\t|\t%s\t|\t%d\t|\n",i,stud[i].n,stud[i].u,stud[i].m);
}
printf("Enter the details of new student\n");
printf("Enter the name\n"); //preferred to enter equal length of name
scanf("%s",stud2.n);
printf("Enter the USN\n");
scanf("%s",stud2.u);
printf("Enter the marks\n");
scanf("%d",&stud2.m);
printf("enter position\n");
scanf("%d",&p);
for(i=n+1;i>=p;i--)
{
stud[i+1]=stud[i];
}
stud[p]=stud2;
printf("|\tSl.no\t|\tName\t\t|\tUSN\t\t |\tMark\t|\n");
for(i=1;i<=n+1;i++)
{
printf("|\t%d\t|\t%-10s\t|\t%s\t|\t%d\t|\n",i,stud[i].n,stud[i].u,stud[i].m);
}
return 0;
}