We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3a6c500 commit 7ba40beCopy full SHA for 7ba40be
selection sort/selectionsort.c
@@ -1,6 +1,5 @@
1
#include <stdio.h>
2
3
-
4
void selectionsort(int data[100], int size){
5
int temp=0;
6
int min=0;
@@ -46,15 +45,14 @@ void selectionsort(int data[100], int size){
46
45
scanf("%d",&arr[i]);
47
}
48
49
50
selectionsort(arr,size);
51
52
53
void banner()
54
{
55
printf("\n");
56
printf("-------------------------------------------------------------------------------\n");
57
- printf("\t\t\tSelection sort Algorithem using C\n");
+ printf("\t\t\tSelection sort Algorithem Using C\n");
58
printf("\t\t\t\tCoded By D4az\n");
59
60
0 commit comments