diff --git a/06. Sorting/Selection Sort cpp b/06. Sorting/Selection Sort cpp new file mode 100644 index 0000000..b5fa090 --- /dev/null +++ b/06. Sorting/Selection Sort cpp @@ -0,0 +1,51 @@ +#include +using namespace std; + +int findSmallest (int[],int); +int main () +{ + int myarray[5] = {12,45,8,15,33}; + int pos,temp; + cout<<"\n Input list of elements to be Sorted\n"; + for(int i=0;i<5;i++) + { + cout<