diff --git a/selectionSort.c b/selectionSort.c new file mode 100644 index 0000000..a643f79 --- /dev/null +++ b/selectionSort.c @@ -0,0 +1,41 @@ +#include +#include + +struct array{ + int *A; + int size; +}; + +void SelectionSort(int B[],int size){ + + for(int i=0;i