Skip to content

Commit

Permalink
Modified Selection
Browse files Browse the repository at this point in the history
  • Loading branch information
GauravSrivastava-prog committed Oct 29, 2023
1 parent f6554be commit 043f43e
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
Binary file modified gaurav.122467/DSA4
Binary file not shown.
2 changes: 1 addition & 1 deletion gaurav.122467/DSA4.c
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ void sort(int a[],int size)
int temp;
for(int i=0;i<size;i++)
{
for(int j=i;j<size;j++)
for(int j=i+1;j<size;j++)
{
if(a[i]>a[j])
{
Expand Down

0 comments on commit 043f43e

Please sign in to comment.