-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path2Dimensional_Sort.c
56 lines (51 loc) · 897 Bytes
/
2Dimensional_Sort.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
56
#include<stdio.h>
#include<stdlib.h>
void sort(int n, int arr[])
{
int i,j;
int temp;
for(i=0;i<n-1;i++)
{
for(j=0;j<n-i-1;j++)
{
if(arr[j]>arr[j+1])
{
temp=arr[j];
arr[j]=arr[j+1];
arr[j+1]=temp;
}
}
}
}
int main()
{
int n,m;
printf("Enter rows:");
scanf("%d",&n);
printf("Enter coloumns:");
scanf("%d",&m);
int array[n][m];
for(int i=0;i<n;i++)
{
for(int j=0;j<m;j++)
{
scanf("%d",&array[i][j]);
}
printf("\n");
}
for(int i=0;i<n;i++)
{
for(int j=0;j<m;j++)
{
sort(m,array[j]);
}
}
for(int i=0;i<n;i++)
{
for(int j=0;j<m;j++)
{
printf("%d",array[i][j]);
}
printf("\n");
}
}