diff --git a/Sorting/my_quicksort.c b/Sorting/my_quicksort.c new file mode 100644 index 0000000..3daf349 --- /dev/null +++ b/Sorting/my_quicksort.c @@ -0,0 +1,82 @@ +#include +#include + +void swap(int *a,int *b){ + + int temp; + temp=*a; + *a=*b; + *b=temp; + +}; +void printarray(int *arr, int n){ + + int i=0; + + for( i=0; i