Skip to content

Commit 7ba40be

Browse files
author
d4az
authored
Update selectionsort.c
1 parent 3a6c500 commit 7ba40be

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

selection sort/selectionsort.c

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
#include <stdio.h>
22

3-
43
void selectionsort(int data[100], int size){
54
int temp=0;
65
int min=0;
@@ -46,15 +45,14 @@ void selectionsort(int data[100], int size){
4645
scanf("%d",&arr[i]);
4746
}
4847

49-
5048
selectionsort(arr,size);
5149
}
5250

5351
void banner()
5452
{
5553
printf("\n");
5654
printf("-------------------------------------------------------------------------------\n");
57-
printf("\t\t\tSelection sort Algorithem using C\n");
55+
printf("\t\t\tSelection sort Algorithem Using C\n");
5856
printf("\t\t\t\tCoded By D4az\n");
5957
printf("-------------------------------------------------------------------------------\n");
6058
printf("\n");

0 commit comments

Comments
 (0)