-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstructure_with_arra.c
More file actions
57 lines (55 loc) · 1.1 KB
/
structure_with_arra.c
File metadata and controls
57 lines (55 loc) · 1.1 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
#include<stdio.h>
void ascen(int a[])
{
int i, j,temp;
for(i = 0; i<10; i++)
{
for(j = i+1; j<10; j++)
{
if(a[j] > a[i])
{
temp = a[i];
a[i] = a[j];
a[j] = temp;
}
}
}
printf("Ascending Order\n");
for(i = 0; i<10; i++)
{
printf("%d\n",a[i]);
}
}
void desc(int a[]) //array a[] points to arr.
{
int i, j,temp;
for(i = 0; i<10; i++)
{
for(j = i+1; j<10; j++)
{
if(a[j] < a[i])
{
temp = a[i];
a[i] = a[j];
a[j] = temp;
}
}
}
printf("Descending Order\n");
for(i = 0; i<10; i++)
{
printf("%d\n",a[i]);
}
}
int main()
{
int a[10],i;
printf("enter 5 element in array\n");
for(i=0;i<10;i++)
{
scanf("%d",&a[i]);
}
ascen(a);
desc(a);
return 0;
}