-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlab5_3.c
More file actions
66 lines (47 loc) · 814 Bytes
/
Copy pathlab5_3.c
File metadata and controls
66 lines (47 loc) · 814 Bytes
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
#include<stdio.h>
#include<string.h>
int main()
{ int n;
printf("enter the no of string:\n");
scanf("%d",&n);
char str[n][10];
int i,j,k;
for(i=0;i<n;i++)
{
printf("entert string %d",i+1);
scanf("%s",str[i]);
}
char *p[n],*t;
for(i=0;i<n;i++)
{
p[i]=str[i];
}
printf("before sort:\n");
for(i=0;i<n;i++)
{
printf("%s\n",p[i]);
}
for(k=0;k<n;k++)
{
for(i=0;i<n-1;i++)
{
j=strcmp(p[i],p[1+i]);
if(j>0)
{
t=p[i];
p[i]=p[i+1];
p[i+1]=t;
}
}
}
printf("actual data:\n");
for(i=0;i<n;i++)
{
printf("%s\n",str[i]);
}
printf("new data:\n");
for(i=0;i<n;i++)
{
printf("%s\n",p[i]) ;
}
}